【发布时间】:2016-09-25 08:16:26
【问题描述】:
我正在尝试根据产品类型在产品页面上包含一些 sn-ps 和模板。但是,liquid 似乎不会有条件地生成 sn-ps。
我正在努力实现的一个例子:
{% if product.type == 'shoes' %}
{% include 'shoes-template' %}
{% else %}
{% include 'other-template' %}
{% endif %}
【问题讨论】:
-
有东西。有条件的
include有效。我在很多地方都使用它。你能分享任何其他相关的代码吗?shoes-template和other-template也是?
标签: shopify liquid liquid-layout