Hi all,
I’m trying to track the user’s country when they visit our website on Shopify. Is there any functionality or feature that can support us in achieving this?
Thanks.
Hi all,
I’m trying to track the user’s country when they visit our website on Shopify. Is there any functionality or feature that can support us in achieving this?
Thanks.
Please use the localization object:
Is it on storefront? Then this would fetch the preferred language, country and currency. Pretty handy!
await fetch(
window.location.origin +
"/browsing_context_suggestions.json?country[enabled]=true&language[enabled]=true¤cy[enabled]=true"
).then((r) => r.json())