我试图做一个条件,如果一个产品在收集“个人”,它将显示一个文本框。我在product.liquid页面中有这个,但它似乎没有工作。
{% if collection.title == 'personal' %}
<div>
<p><input type="text" id="letter" placeholder="Enter up to 6 Letters" name="properties[letter]" /></p>
</div>
{% endif %}
答案 0 :(得分:0)
试试这个:
{% for collection in product.collections %}
{% if collection.handle == 'personal' %}
<div>
<p><input type="text" id="letter" placeholder="Enter up to 6 Letters" name="properties[letter]" /></p>
</div>
{% endif %}
{% endfor %}
请参阅product.collections
的Shopify文档。