基于所选区域设置的 Liquid 主题定制

sci*_*ppy 3 liquid shopify shopify-template

我正在寻找 Shopify 主题的区域设置定制。我在这里查看了https://shopify.dev/docs/themes/liquid/reference但我找不到任何解决方案。

我需要这样的东西:

{% if page.selected.locale == "EN" %}
  add here customized them code for EN theme
{% endif %}
Run Code Online (Sandbox Code Playgroud)

sci*_*ppy 5

{% if request.locale.iso_code == 'en' %}
  English content
{% endif %}
Run Code Online (Sandbox Code Playgroud)