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

Geotargeted popup?

Geotargeted popup?

Hoya3
Visitor
2 0 0

"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."

Replies 3 (3)

jakeclifford
Shopify Partner
93 18 25

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. 
Screenshot 2025-06-18 at 12.33.43 pm.png

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'm Jake the Shopify Wizard! If helpful Like and Mark as an Accepted Solution
My Blog - Tips and Tricks for Shopify Horizon and AI features Horizon + AI

Struggling to solve an annoying issue? Get Help Fast

Hoya3
Visitor
2 0 0

"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?"

jakeclifford
Shopify Partner
93 18 25

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. 

I'm Jake the Shopify Wizard! If helpful Like and Mark as an Accepted Solution
My Blog - Tips and Tricks for Shopify Horizon and AI features Horizon + AI

Struggling to solve an annoying issue? Get Help Fast