Category: How To

  • Reject non-business emails from Webflow form submission

    Reject non-business emails from Webflow form submission

    Lead generation forms are essential for B2B companies to get in touch with potential customers. Yet, they sometimes may put more burdens on sales teams because of the irrelevant users.

    B2B companies must filter users from the beginning; the easiest way is to obtain their corporate email. Not all of us tend to use our corporate emails in filling out online forms, it’s a habit, and no one can change it, yet, you can force change that behavior by rejecting personal emails from passing your forms.

    The problem is that web forms are built to accept all domains, and making that restriction to business emails is an advanced step that requires extra technical work.

    Today, we will explain how to customize your Webflow website to reject personal emails and allow only users with corporate emails to submit your forms.

    How to reject personal emails from submitting your Webflow forms?

    To prevent personal emails from reaching your CRM, copy/paste the following code after the body tags on your page that contains the contact form.

    We’ve added the most common free email services to reject them. If you would like to add more domains, all you need to do is edit this rule (?!gmail.com)add your desired domain and then add it after +@ In line 5. This will ensure that anyone with @domain will not be able to submit your form.

    <script type="text/javascript">
    $(document).ready(function(e) {
    $('#submit-home').click(function() {
    var email = $('#Email').val();
    var reg = /^([\w-\.]+@(?!gmail.com)(?!mail.com)(?!gmil.com)(?!gamil.com)(?!gamail.com)(?!yahoo.com)(?!hotmail.com)(?!yahoo.co.in)(?!gmail.con)(?!aol.com)(?!abc.com)(?!xyz.com)(?!pqr.com)(?!rediffmail.com)(?!live.com)(?!outlook.com)(?!me.com)(?!msn.com)(?!ymail.com)([\w-]+\.)+[\w-]{2,4})?$/;
    if (reg.test(email)) {
    return 0;
    } else {
    alert('Por favor ingresa tu dirección de correo empresarial');
    return false;
    }
    });
    });
    </script>

    Reach out to me at [email protected] if you need any extra help.

  • How to Capture UTM Parameters in Webflow Forms?

    How to Capture UTM Parameters in Webflow Forms?

    Any sustainable business growth must identify which parts of the business strategy generate the best customers with a positive ROI to focus on the marketing channels that work and ditch those that don’t.

    Though if you can’t measure which marketing campaigns generate leads and customers, how will you know where to focus your time and resources?

    B2B and other businesses that rely on lead generation can easily measure marketing performance by tracking the UTM source of every lead in your CRM.

    This post demonstrates how to capture UTM parameters in Webflow Forms and send that data in the form fields to display them inside your CRM for reporting.

    Also read: how to reject non-business emails from Webflow form submissions?

    Capture and push UTM to any form in Webflow + store parameters in a cookie when users move from one page to another

    Copy-Paste Before body (Per page or entire website)

    The code structure:

    1. Get URL parameters.
    2. Get Webflow form elements by jquery class selector and set the value to this UTM param X.
    3. It’s useful to store UTM params inside a cookie (To keep the UTM also if the user goes from page X to Y).
    <!-- https://github.com/js-cookie/js-cookie -->
    <script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
    
    <!-- tribal code -->
    <script>
    const my_utmParameters = [
    "utm_source",
    "utm_medium",
    "utm_campaign"
    ];
    
    function getAllUrlParams(url) {
    let obj = Object.fromEntries(new URLSearchParams(location.search));
    return obj;
    }
    /* Check if Lead Cookie already exist */
    var cookieExist = Cookies.get('Lead'); // => if false return undefined
    /* get URL params object */
    var getAllUrlParams = getAllUrlParams(); // return object
    /*Convert a JavaScript object into a string */
    var getAllUrlParamsJSON = JSON.stringify(getAllUrlParams);
    /* Check if the url with utm_parameters */
    let isEmpty = jQuery.isEmptyObject(getAllUrlParams); // return true/false
    
    /* Case 1 - if the page with parameters & no cockie exsist */
    if(!isEmpty && cookieExist === undefined){
    /* Set lead object for the cockies */
    console.log("Case 1 - parameters & no cockie exsist => Create Cockie");
    /*
    ## Set Cookies ##
    expires: If omitted, the cookie becomes a session cookie (This example)
    */
    createLead();
    setUTMformValues();
    }/*end if*/
    
    let compare = is_this_utm_equal_to_cockie_utm_values();
    
    if(!isEmpty && cookieExist !== undefined){
    /* it this utm params diff from current lead values create new lead*/
    if(!compare){
    /* Case 3 - cockie already exsist but with diff values Vs url utm parmas
    (remove current Lead and generate new one)
    */
    console.log("Case 3 - lead Exist, but with diff parames");
    Cookies.remove('Lead');
    createLead();
    setUTMformValues();
    }else{
    console.log("Case 2 - lead exsist with this params");
    setUTMformValues();
    }
    }
    
    /* Case 4 - cookie Exist but page without any utm param */
    if(isEmpty && cookieExist !== undefined){
    console.log("Case 4 - cookie Exist but page without any utm param");
    setUTMformValues();
    }
    
    function createLead(){
    var lead = {
    parameters: getAllUrlParams
    };
    /* if you want to add 2 days expires for example:
    Cookies.set('Lead', 'lead', { expires: 2})
    */
    Cookies.set('Lead', lead, { });
    }
    
    /* check if this utm url equal to the current values of cockie lead */
    function is_this_utm_equal_to_cockie_utm_values(){
    for (const this_utm_element of my_utmParameters) {
    /* if utm_source exist */
    let value_exsist = JSON.parse(cookieExist).parameters[this_utm_element] == getAllUrlParams[this_utm_element];
    //console.log(`${value_exsist} - ${JSON.parse(cookieExist).parameters[this_utm_element]} compare to: ${getAllUrlParams[this_utm_element]}`);
    if(value_exsist == false){
    return false;
    }
    }/* end for loop */
    return true;
    }
    
    function setUTMformValues(){
    /* webflow form object (Add embed code under webflow designer inside FORM */
    /*
    <input type="text" class="utm_source" placeholder="utm_source" name="utm_source">
    <input type="text" class="utm_medium" placeholder="utm_medium" name="utm_medium">
    <input type="text" class="utm_campaign" placeholder="utm_campaign" name="utm_campaign">
    */
    /* the value if the param is empty */
    const empty_param_case = "null";
    /* set feilds */
    for (const this_utm_element of my_utmParameters) {
    /* if utm_source exist */
    set_utm_feild(this_utm_element);
    }/* end for loop */
    
    /* inner function */
    function set_utm_feild(utm_type){
    let utm_value = JSON.parse(Cookies.get('Lead')).parameters[utm_type];
    let utm_nodes = document.getElementsByClassName(utm_type);
    /* change all utm form feilds */
    if(utm_nodes.length > 0){
    for(var i = 0; i < utm_nodes.length; i++)
    {
    if(!!utm_value && utm_value !== undefined){
    utm_nodes[i].value = utm_value;
    }
    else{
    /* empty param for example ?utm_campaign= or ?utm_campaign */
    utm_nodes[i].value = empty_param_case;
    }
    }/* end for */
    }/* end if */
    }// end inner set_utm_feild function */
    }
    </script>

     

    Populate UTM parameters in a hidden field inside the form

    To do that, insert an embed element inside the form, then add the following javascript code.

    <code class="EnlighterJSRAW" data-enlighter-language="generic"><script></script> <input type="hidden" class="utm_source" placeholder="utm_source" name="utm_source"> <input type="hidden" class="utm_medium" placeholder="utm_medium" name="utm_medium"> <input type="hidden" class="utm_campaign" placeholder="utm_campaign" name="utm_campaign">

    You can repeat the second step in any form across your website, and you will receive UTM parameters from your marketing campaigns or affiliate links inside your form submissions.

    Credit: Siton_Systems

  • Create a click-to-text link that starts SMS ‘HTML examples’

    Create a click-to-text link that starts SMS ‘HTML examples’

    Links are not restricted to web pages; they can initiate phone calls and emails, but not everyone knows that it could be to start an SMS conversation.

    You can launch an email using “href=mailto:[email protected].” You can also start a phone call using “href=” tel:+201000766661.” – But you might not know that you can launch the SMS app on your website visitors’ phones or desktops (Apple only) with an HTML link.

    With the help of HTML, it’s possible to create a hyperlink that sends an SMS message. You can even prepopulate the SMS body text via the link! So, if you wish to add a new method to start conversations with your customers, this article is for you. Here’s how.

    How to create a click-to-text SMS hyperlink?

    All you need is to use the <a> tag and set the attribute value with “sms://” just as in the following examples:

    How to implement it in WordPress or Webflow?

    It differs from one CMS to another. Here’s how to implement link-to-text HTML in WordPress or Webflow.

    WordPress Classic Editor: there are two ways to implement a link-to-text action to open an SMS in WordPress.

    1. Switch to the text editor instead of the visual editor, insert the link above, and customize the anchor text according to your case.
    2. Highlight the text that you wish to convert into a link to SMS, click the link icon in your editor bar, then insert SMS://+phone number

    Webflow: insert “text link or any link element; in the URL field, insert the SMS:// in addition to the phone number you want to receive the message, like this: sms://+20100076661 directly without the rest of the code. Webflow will add the hidden HTML code for you.

    Prepopulate SMS body text 

    On most mobile phones, clicking this link will open a new message screen prepopulated with the shortcode or your business texting number.

    And When a visitor taps on the following link with a body on a smartphone, a new text message will open with a pre-filled recipient and message content as follows:

    To work on iOS

    <a href="sms:00201000766661&amp;body=Thank you for the SMS tip">Test Preview, pre-populate body text</a>

    Another version where you can use it directly in a link field: sms:00201000766661&body=Thank you for the SMS tip

    To work on Android and iOS

    <a href="sms:00201000766661?body=thank you">Link</a>

    Another version where you can use it directly in a link field: sms:00201000766661&amp?body=thank you

    Test Preview on iOS, prepopulate body text

    Test Preview on Android, prepopulate body text

    Hope this helps.

  • YouTube launches critical alerts, tests updated format for channel navigation

    YouTube launches critical alerts, tests updated format for channel navigation

    YouTube has launched critical alerts to notify creators when performance drops significantly, along with an updated format for channel navigation to help channels’ creators boost their analytics.

    Critical alert

    YouTube launches critical alerts, tests updated format for channel navigation
    Credit: Youtube

    The new critical alert function provides channel creators with indications about their channel performance, whether it is dropping significantly. Besides, it refers them to info pages and provides “how to improve” methods.

    According to YouTube, “Many metrics are available, and we know it can sometimes seem complex and hard to piece together. We’re running an experiment where we show some creators a mobile data story card if their viewership is dipping and ways to improve.”

    The experimented alerts will simplify the channel analytics, so creators don’t get bogged down in the data. However, they are still alerted to significant concerns that could impact channel performance.

    Therefore, more creators will keep on track, which could also become a critical reminder that creators rely on to keep on top of such issues.

    Updated format for the channel navigation bar on mobile

    YouTube also experimented to see the channel navigation bar moved from the top of the screen to beneath the channel header in the mobile app.

    The updated format will move the navigation tabs below the primary channel image, which will keep the profile header on screen as you switch between the different tabs.

    According to YouTube, this will help viewers to ‘stay in the context of the channel better’ while providing easier access to subscription and store options.

    Regardless of how small it looks, these could be helpful updates that could have an enormous practical impact on channel management and engagement.

    YouTube users are reporting errors with the cross-channel live redirect option

    According to YouTube, some users have been getting errors with its cross-channel live redirect option launched last month.

    Cross-channel live redirect enables creators to redirect their live audience to other channels.

    YouTube says its redirects are not always working as they should in some settings. Given this, YouTube is removing the option for the moment as it works on a solution.

  • How to recover a hacked Facebook account?

    How to recover a hacked Facebook account?

    No matter how secure your Facebook account, you could get hacked because someone somehow gets a hold of your password.

    Since people often use Facebook to log in to other accounts, it could be terrible to get hacked because if someone gets into your Facebook account, they might have access to a bunch of your other social media, Emails, business, or bank account.

    In this article, we’ll show you how to avoid it and ensure your hacked account is fully recovered.

    In case your account is hacked

    Now Your account is being “hacked,” troubles will start; your hacker might begin sending messages on your behalf, posting as you, or using your account for malicious purposes.

    If you still can log in, here’s what to do:

    The first step is, Change your password if you still have the power to do so. If you can’t log in, request a password reset. If that doesn’t work, someone may have changed the email address on the account. There’s a way of dealing with that, too.

    The second thing to do is to Report the weird behavior to Facebook, so they can help stop it from happening to others.

    Go to your security settings, and see if you recognize everywhere you are logged in. If you don’t recognize a location or a device, press the three-dot menu, and select “not you?”. This will log you out and will help you further secure your account.

    Now Check that you recognize all apps and websites that have access to your Facebook account. Same as above; if there’s something you don’t recognize, press “remove.”

    Check the email addresses Facebook has listed for you in your general settings. If there’s anything there that isn’t yours, remove it.

    Now that you know hackers don’t have access to your account anymore Change your password one more time; the new password should be secure (with letters, numbers, and special characters).

    Don’t re-use your password from somewhere else. Ideally, use a password manager to ensure that you can keep track of all your different passwords and use higher-quality passwords in general.

    Turn on two-factor authentication so that even if your password was somehow stolen, they can’t log in without also having access to your phone or your authenticator app.

    Finally, change your email password whenever something weird happens to your security and social media.

    It’s terrible to lose access to your social accounts. Still, your email is the holy grail for hackers, so rotating that password regularly (every 1-3 months) and changing it whenever something strange happens is a well-guaranteed plan.

    How to avoid getting your Facebook account hacked?

    You may get a Messenger message from a friend on Facebook, saying something like “OMG, did you see who died?” with a link. You click on the link, and it looks like Facebook, but suddenly you’re being asked to log in again.

    You think nothing of it and type in your email and password; the Problem is the site that you just gave your password to isn’t actually Facebook, and now they have your password.

    So be careful and don’t do it this is the most common way that a Facebook account is compromised is by tricking you into giving the hackers your password.

    To avoid this, follow the steps above and turn on two-factor authentication, then be vigilant whenever you log in, are you logging into a site that starts with https://www.facebook.com? If not, if it looks like something like ffacebook.com or facebook.this-is-a-security-notification.com, don’t type in your password.
    Typically, the safest thing is manually typing in Facebook.com into your URL bar if you’re using a web browser.
    Keep in mind that the Facebook app has a browser built-in, so that you may be in the Facebook app, but it could ask you for a password; this is a scam because if you’re already in the app, why would it ask you to log in? So if it seems suspicious, then it is, don’t type in your password.
    Check the apps that have access to your Facebook account regularly. If you recognize an app but haven’t used it in a while and don’t think you’ll need it, delete it.
  • How to download Disney Plus App on iPhone, Android, Smart TV

    How to download Disney Plus App on iPhone, Android, Smart TV

    The streaming home of your favorite stories, Disney+ has launched its service in the Middle East and North Africa today.

    Whether you are an Apple or Android user, on mobile or desktop, streaming on smart TV or tablet, there’s an app for every device. Disney+ supports mobile devices, web browsers, and smart TVs.

    How to download the Disney+ app?

    Go to your Apple app store, find the Disney+ app, and press “GET.”

    Web browsers

    • Disney+ web browser:
      •  PC
        • Chrome 75+ is supported on Windows 7 and later
        • Firefox 75+ is supported on Windows 7 and later
      • Mac
        • Safari 11+ is supported on macOS 10.12 (Sierra) and later
        • Chrome 75+ is supported on macOS 10.10 (Yosemite) and later
        • Firefox 75+ is supported on macOS 10.9 (Mavericks) and later

    Mobile devices and tablets

    Smart TVs and connected devices

    Search for Disney+ on your Smart TV app store to download the app.

    • Android TV devices
    • LG WebOS smart TVs
    • Samsung Tizen smart TVs
    • Apple TV (4th generation and later)
    • Google Chromecast

    Happy Streaming!

  • Netflix secret category codes to access all movies, series

    Netflix secret category codes to access all movies, series

    Most of us don’t know that Netflix has secret codes that allow us to find all movies and series in a classified way.

    You will not find any categories on Netflix; they are not shown in the navigation; when you’re scrolling through Netflix’s homepage, you might feel like you do not see the complete package. Well, that’s because you’re not.

    How to Find Similar Content on Netflix

    If you just finished a movie or series you liked, you can find similar content by using a unique URL and adding the title ID at the end of it.

    1. Click on the Title and Copy the Title ID
    2. Add the Title ID to the End of the Similars URL

    So if you have ever used Netflix codes before, talk to us about your experience in the comments section.

    How to use Netflix’s secret codes yourself?

    To use Netflix hidden codes, follow these steps:

    1. Open your favorite browser
    2. Go to https://netflix.com/browse/genre/{code}
    3. Replace the {code} with the code of your choice (you can find it below on this page)
    4. Press enter to go to the category page

    You are on the page with all the movies and series associated with this category. Netflix may ask you to log in before showing you the film and series related to this category.

    Netflix Secret Codes

    The only way to see everything Netflix has to offer is to use this Netflix secret code list. In this section, we’ll list all of Netflix’s secret codes according to their category, each category has a general code, which we’ve popped in the subcategories listed below.

    Action & Adventure (1365)

    Asian Action Movies (77232)
    Classic Action & Adventure (46576)
    Action Comedies (43040)
    Action Thrillers (43048)
    Adventures (7442)
    Comic Book and Superhero Movies (10118)
    Westerns (7700)
    Spy Action & Adventure (10702)
    Crime Action & Adventure (9584)
    Martial Arts Movies (8985)
    Military Action & Adventure (2125)

    Anime (7424)

    Adult Animation (11881)
    Anime Action (2653)
    Anime Comedies (9302)
    Anime Dramas (452)
    Anime Features (3063)
    Anime Sci-Fi (2729)
    Anime Horror (10695)
    Anime Fantasy (11146)
    Anime Series (6721)

    Children & Family Movies (783)

    Education for Kids (10659)
    Movies based on children’s books (10056)
    Family Features (51056)
    TV Cartoons (11177)
    Kids’ TV (27346)
    Kids Music (52843)
    Animal Tales (5507)

    Classic Films (31574)

    Classic Comedies (31694)
    Classic Dramas (29809)
    Classic Sci-Fi & Fantasy (47147)
    Classic Thrillers (46588)
    Film Noir (7687)
    Classic War Movies (48744)
    Epics (52858)
    Silent Movies (53310)

    Comedies (6548)

    Dark Comedies (869)
    Late Night Comedies (1402)
    Mockumentaries (26)
    Political Comedies (2700)
    Screwball Comedies (9702)
    Sports Comedies (5286)
    Stand-up Comedy (11559)
    Teen Comedies (3519)
    Spoofs & Satires (4922)
    Romantic Comedies (5475)
    Slapstick Comedies (10256)

    Cult Movies (7627)

    B-Horror Movies (8195)
    Camp Films (1252)
    Cult Horror Movies (10944)
    Cult Sci-Fi & Fantasy (4734)
    Cult Comedies (9434)

    Documentaries (6839)

    Biographical Documentaries (3652)
    Crime Documentaries (9875)
    Historical Documentaries (5349)
    Military Documentaries (4006)
    Sports Documentaries (180)
    Music & Concert Documentaries (90361)
    Travel & Adventure Documentaries (1159)
    Political Documentaries (7018)
    Science & Nature Documentaries (2595)
    Social & Cultural Documentaries (3675)

    Dramas (5763)

    Biographical Dramas (3179)
    Classic Dramas (29809)
    Courtroom Dramas (2748)
    Crime Dramas (6889)
    Dramas based on a book (4961)
    Dramas based on real life (3653)
    Tearjerkers (6384)
    Sports Dramas (7243)
    LGBTQ Dramas (500)
    Independent Dramas (384)
    Teen Dramas (9299)
    Military Dramas (11)
    Period Pieces (12123)
    Political Dramas (6616)
    Romantic Dramas (1255)
    Showbiz Dramas (5012)
    Social Issue Dramas (3947)

    Faith & Spirituality (26835)

    Faith & Spirituality Films (52804)
    Spiritual Documentaries (2760)
    Kids Faith & Spirituality (751423)

    African Films (3761)
    Australian Films (5230)
    Belgian Films (262)
    Korean Films (5685)
    Latin American Films (1613)
    Middle Eastern Films (5875)
    New Zealand Films (63782)
    Russian Films (11567)
    Scandinavian Films (9292)
    Southeast Asian Films (9196)
    Spanish Films (58741)
    Greek Films (61115)
    German Films (58886)
    French Films (58807)
    Eastern European Movies (5254)
    Dutch Movies (10606)
    Irish Movies (58750)
    Japanese Movies (10398)
    Italian Movies (8221)
    Indian Movies (10463)
    Chinese Movies (3960)
    British Movies (10757)

    LGBTQ Comedies (7120)
    LGBTQ Dramas (500)
    Romantic LGBTQ Movies (3329)
    Gay & Lesbian Documentaries (4720)
    Gay & Lesbian TV Shows (65263)

    Horror Films (8711)

    B-Horror Films (8195)
    Creature Features (6895)
    Cult Horror Films (10944)
    Deep Sea Horror Films (45028)
    Horror Comedy (89585)
    Monster Movies (947)
    Slasher and Serial Killer Films (8646)
    Supernatural Horror Films (42023)
    Teen Screams (52147)
    Vampire Horror Films (75804)
    Werewolf Horror Films (75930)
    Zombie Horror Films (75405)
    Satanic Stories (6998)

    Independent Films (7077)

    Experimental Films (11079)
    Independent Action & Adventure (11804)
    Independent Thrillers (3269)
    Romantic Independent Films (9916)
    Independent Comedies (4195)
    Independent Dramas (384)

    Music (1701)

    Kids Music (52843)
    Latin Music (10741)
    World Music (2856)

    Musicals (13335)

    Classic Musicals (32392)
    Showbiz Musicals (13573)

    Romantic Films (8883)

    Romantic Favourites (502675)
    Quirky Romance (36103)
    Romantic Independent Films (9916)
    Romantic Dramas (1255)
    Steamy Romantic Movies (35800)
    Classic Romantic Movies (31273)
    Romantic Comedies (5475)

    Sci-Fi & Fantasy (1492)

    Action Sci-Fi & Fantasy (1568)
    Alien Sci-Fi (3327)
    Classic Sci-Fi & Fantasy (47147)
    Cult Sci-Fi & Fantasy (4734)
    Fantasy (9744)
    Sci-Fi Adventure (6926)
    Sci-Fi Dramas (3916)
    Sci-Fi Horror Films (1694)
    Sci-Fi Thrillers (11014)

    Sports Films (4370)

    Sports Comedies (5286)
    Sports Documentaries (180)
    Sports Dramas (7243)
    Baseball Films (12339)
    Football Movies (12803)
    Boxing Films (12443)
    Soccer Films (12549)
    Martial Arts, Boxing & Wrestling (6695)
    Sports & Fitness (9327)

    Thrillers (8933)

    Action Thrillers (43048)
    Classic Thrillers (46588)
    Crime Thrillers (10499)
    Independent Thrillers (3269)
    Gangster Movies (31851)
    Psychological Thrillers (5505)
    Political Thrillers (10504)
    Mysteries (9994)
    Sci-Fi Thrillers (11014)
    Spy Thrillers (9147)
    Steamy Thrillers (972)
    Supernatural Thrillers (11140)

    TV Programmes (83)

    British Programmes (52117)
    Classic TV Programmes (46553)
    Crime Programmes (26146)
    Cult TV Programmes (74652)
    Food & Travel TV (72436)
    Kids’ Programmes (27346)
    Korean Programmes (67879)
    Miniseries (4814)
    Military TV Programmes (25804)
    Science & Nature TV (52780)
    Action & Adventure Programmes (10673)
    Comedies Programmes (10375)
    Documentary Programmes (10105)
    Drama Programmes (11714)
    Horror Programmes (83059)
    Mystery Programmes (4366)
    Sci-Fi & Fantasy Programmes (1372)
    Reality TV (9833)
    Teen Programmes (60951)

  • Discover Profile tool helps find anyone’s social profiles in one click

    Discover Profile tool helps find anyone’s social profiles in one click

    Have you ever tried to find a prospect’s social profile on Facebook, Linkedin, or Twitter to reach out in a friendly way?

    The traditional way is to search their name on each online platform, and that could eat your time, or you might not find them.

    There’s an easy and efficient way to perform this research in one click, using a free profile discovery tool called “Discover Profile.”

    Discover Profile helps find social profiles for anyone in seconds.

    You can also use it to find your competitor’s social profiles for benchmarking. If you are a startup, you probably still don’t know them well, and sometimes new competitors come up to the surface, and you want to add them to your monitors.

    The tool helps you connect with prospects on all their social media channels by discovering their social media profiles in seconds and one click.

    How does Discover Profile work?

    Go to discoverprofile.com, then type a prospect or competitor’s username or email address in the search bar.

    After that, the free profile discovery tool will scour the web to find their contact details and social media profiles. Additionally, the tool finds new ways to connect, including Facebook, Instagram, Twitter, and TikTok.

  • How to record screen on iPhone, iPad?

    How to record screen on iPhone, iPad?

    Whether you want to show off your gaming skills or walk somebody through how to set up their new phone, screen recording would be the perfect feature to accomplish what you want efficiently.

    Here’s a step-by-step guide for recording your screen on iPhone or iPad.

    First, you should make sure that you have an iOS 14 or later update installed on your iPhone or iPad.

    Before using the screen recorder tool

    Before you can begin using the screen recorder tool, you’ll first need to add the feature’s button to the Control Center.

    • On your iOS device, go to Settings > Control Center > Customize Controls then tap the green plus button next to Screen Recording.

    How to Record Your Screen?

    How to Record Your Screen on iPhone, iPad?
    Recording screen on iPhone

    After adding the shortcut, you begin by opening Control Center. On iPhones older than the iPhone X, get there by swiping up from the bottom of the screen. On newer iPhones, swipe down from the top-right corner of the screen. Then, proceed as follows:

    1. Touch and hold the gray Record button, then tap Microphone.
    2. Tap Start Recording, then wait for the three-second countdown.
    3. To stop recording, open Control Center, then tap the red Record button. Or tap the red status bar at the top of your screen and tap Stop.
    4. Go to the Photos app and select your screen recording.
  • How to take a screenshot on any iPad generation?

    How to take a screenshot on any iPad generation?

    If your workflow requires frequent screenshots on Apple iPad. You may need to check this article on how to take a screenshot on any iPad generation and save it as a photo or PDF.

    More like this: 

    How to screenshot on an iPad and save to photos?

    • On an iPad with a Home button: press and release the top button and the Home button.
    • On an iPad without the home button: press and then release the top button (on the top-right edge of the iPad) and either volume button on other iPad models.
    • Tap the screenshot in the lower-left corner, then tap Done.
    • Choose Save to Photos, Save to Files, or Delete Screenshot.

    Note: If you choose to Save to Photos, you can view it in the Screenshots album in the Photos app or the All Photos album if you’re using iCloud Photos.

    Save a full-page screenshot as a PDF

    You can take a full-page, scrolling screenshot of a webpage, document, or email that exceeds the length of your iPad screen, then save it as a PDF.

    • On an iPad with a Home button: Simultaneously press and release the top button and the Home button.
    • Simultaneously press the top button and either volume button on other iPad models.
    • Tap the screenshot in the lower-left corner, then tap Full Page.
    • Do any of the following:
    • Save the screenshot: Tap Done, choose Save PDF to Files, choose a location, then tap Save.

    How to share a screenshot from an iPad to any other Apple device?

    To share a screenshot, go to photos –> click the screenshot you saved –> tap the Share icon –> choose a sharing option (for example, AirDrop, Messages, or Mail) –> enter any other requested information, then send the PDF.