shopify液体收集循环

时间:2018-04-13 01:04:20

标签: shopify liquid shopify-app

##如何编写Shopify集合循环,它将: - 仅列出包含10个以上产品的集合 - 列出集合标题 - 将集合标题链接到集合URL

1 个答案:

答案 0 :(得分:1)

你应该阅读Shopify文档,因为这是非常基础的。

{% for collection in collections %}
    {% if collection.products_count > 10 %}
        <h4>
            <a href="{{ collection.url }}">{{ collection.title }}</a>
        </h4>
    {% endif %}
{% endfor %}