标签: shopify liquid
我试图找到符合条件的产品标签,然后显示这些标签。
这为我提供了产品的所有标签......
{% for tag in product.tags %} {% if product.tags contains '336699' %} {{ tag }} {% endif %} {% endfor %}
我如何才能回显满足'包含'标准是什么?
答案 0 :(得分:2)
你快到了。使用for在contains内迭代product.tags和if,使tag与您的字符串文字条件相匹配。
for
contains
product.tags
if
tag
{% for tag in product.tags %} {% if tag contains '336699' %} {{ tag }} {% endif %} {% endfor %}