Shopify检查标签[液体]

时间:2015-12-10 14:14:24

标签: shopify liquid

{% for tag in product %}   
  {% if product.tags contains new %}
    <span>Test</span>
  {% endif %}
{% endfor %}

我需要查看产品,如果产品有一个名为new的标签,那么如果没有,则显示一个span标签。

出于某种原因,这段代码不起作用。

1 个答案:

答案 0 :(得分:0)

这可以完成这项工作:

{% for product in products %}   
  {% if product.tags contains "new" %}
    <span>Test</span>
  {% endif %}
{% endfor %}