“Is there a way to display a popup only to visitors from Canada based on their IP address? I’d like to show a delivery delay notice due to the ongoing DHL strike, but only for Canadian users.”
Hi @Hoya3 ,
You can change the content of any of your theme’s by country in the theme editor if you have the Canadian market set up.
There is a few other ways to do this within the theme code as well, you can access the country code of user and hide based on this. e.g
{% if localization.country.iso_code == 'CA' %}
## Special Offer for Canadian Customers!
Enjoy free shipping on all orders over $50 CAD!
{% endif %}
Thanks,
Jake
1 Like
“I was previously using the Pop Convert app, but I’m not sure how to display a popup directly through the general website settings. Is it possible to create a popup without using a third-party app?”
Hi @Hoya3
Yes this can be done without an app, your theme might have one built in.
Or if there isn’t one a custom one can be built into the theme code.