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)
{% if request.locale.iso_code == 'en' %}
English content
{% endif %}
Run Code Online (Sandbox Code Playgroud)