App reviews, troubleshooting, and recommendations
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
"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' %}
<div class="canada-promo">
<h2>Special Offer for Canadian Customers!</h2>
<p>Enjoy free shipping on all orders over $50 CAD!</p>
</div>
{% endif %}
Thanks,
Jake
"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.