Global expansion, localizing content, and selling in multiple currencies and languages
Hello,
I have products in my Shopify store that are only available to customers in certain countries. I'm trying to find a way to preview these products as if I were a customer from those specific locations, but I'm not sure how to do it from my current location. I've tried using the admin preview, but it only shows the products available in my location. Is there a way to simulate being in another country, or a tool that allows me to see what customers in different countries would see when they visit my store?
Thank you!
Hi @anarepa
I see what you're trying to do, and it's definitely an important step in making sure your store setup works as expected. Since Shopify dynamically displays products based on location, you won’t be able to preview restricted products through the standard admin preview if they aren’t available in your region.
Here are a few solid ways to simulate a customer experience from another country:
If your theme uses Liquid to restrict products, look for something like this in product.liquid:
{% if customer.country == "United States" %}
<div>Product Available</div>
{% else %}
<div style="display: none;">Product Not Available</div>
{% endif %}
To temporarily bypass it for testing, you could comment out the restriction:
{%- comment -%}
{% if customer.country == "United States" %}
{%- endcomment -%}
<div>Product Available</div>
{%- comment -%}
{% else %}
<div style="display: none;">Product Not Available</div>
{% endif %}
{%- endcomment -%}
Just don’t forget to undo this when you're done testing!
If you're regularly working with country-specific products, I recommend using a VPN or Shopify Markets for the most reliable testing. If you need a quick one-time check, a proxy tool like GeoPeeker is a good option. And if you’re comfortable with theme code, temporarily adjusting the country filter can work too.
If you need extra help, just let me know asap. Thanks
Daisy.
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025