Skip to main content
Accepting Students Only from a Specific Country?
Updated over 3 months ago

Table of Contents

How to Stop People Outside Country X from Seeing Your Order Form

  1. Drag a JS/HTML block to the top of your order form

  2. Enable the snippet and add the following code:
    โ€‹

    <script>
    fetch('https://api.db-ip.com/v2/free/self')
    .then(response => response.json())
    .then(data => {
    if (data.countryCode !== 'US') {
    window.location.href = "https://www.google.com";
    }
    })
    </script>

    This code will redirect people not in the USA to Google.com. To redirect elsewhere, simply replace https://www.google.com with the URL of your choice.

Did this answer your question?