##如何编写Shopify集合循环,它将: - 仅列出包含10个以上产品的集合 - 列出集合标题 - 将集合标题链接到集合URL
答案 0 :(得分:1)
你应该阅读Shopify文档,因为这是非常基础的。
{% for collection in collections %}
{% if collection.products_count > 10 %}
<h4>
<a href="{{ collection.url }}">{{ collection.title }}</a>
</h4>
{% endif %}
{% endfor %}