Liquid theme customization based on selected locale

Viewed 1955

I'm searching for locale customization on a shopify theme.
I've looked here https://shopify.dev/docs/themes/liquid/reference but I'm no 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 %}

Thanks

1 Answers

This is the solution!

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

Related