有没有一种方法可以有条件地将代码段加载到 shopify 中的产品页面?
is there a way we can conditional loading of snippets to only product page in shopify?
我只需要在产品页面添加代码段,如何才能阻止它在其他页面上加载?
{% render "custom" %}
添加到 theme.liquid
您可以使用基于模板对象的条件标签,例如 {% if template contains "product" %}{% render "custom" %}{% endif %}
我只需要在产品页面添加代码段,如何才能阻止它在其他页面上加载?
{% render "custom" %}
添加到 theme.liquid
您可以使用基于模板对象的条件标签,例如 {% if template contains "product" %}{% render "custom" %}{% endif %}