shopify液体收集回路

shopify液体收集回路,shopify,liquid,shopify-app,Shopify,Liquid,Shopify App,##如何编写Shopify收集循环,以: -仅列出包含10个以上产品的集合 -列出收藏标题 -将收藏标题链接到收藏url您应该阅读Shopify文档,因为这是非常基本的 {% for collection in collections %} {% if collection.products_count > 10 %} <h4> <a href="{{ collection.url }}">{{ collection.

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

您应该阅读Shopify文档,因为这是非常基本的

{% for collection in collections %}
    {% if collection.products_count > 10 %}
        <h4>
            <a href="{{ collection.url }}">{{ collection.title }}</a>
        </h4>
    {% endif %}
{% endfor %}
{%用于集合%中的集合}
{如果collection.products_count>10%}
{%endif%}
{%endfor%}