Created
December 1, 2021 17:08
-
-
Save gbrits/d7a079be14fe7b690d132d35739e6b6a to your computer and use it in GitHub Desktop.
Country-specific notice (Shopify)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if template == 'index' %} | |
fetch('https://api.ipregistry.co/?key=tryout') | |
.then(function (response) { | |
return response.json(); | |
}) | |
.then(function (payload) { | |
if('Australia' == payload.location.country.name){ | |
$('#international-notice').show(); | |
} | |
}); | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment