## How Do I Write a Shopify collection loop that will:
- list only collections that contain more than 10 products
- list the collection title
- link the collection title to the collection url
You should read the Shopify docs since this is very basic.
{% for collection in collections %}
{% if collection.products_count > 10 %}
<h4>
<a href="{{ collection.url }}">{{ collection.title }}</a>
</h4>
{% endif %}
{% endfor %}
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more