Search code examples
shopifyliquidshopify-template

Liquid theme customization based on selected locale


I'm searching for locale customization on a shopify theme. I've looked here https://shopify.dev/docs/themes/liquid/reference but I'm not able to find any solution.

I need of something like this:

{% if page.selected.locale == "EN" %}
  add here customized them code for EN theme
{% endif %}

Solution

  • {% if request.locale.iso_code == 'en' %}
      English content
    {% endif %}