Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prosantamazumder/74fe8b09f13324f49c1ab110efc6f4fd to your computer and use it in GitHub Desktop.
Save prosantamazumder/74fe8b09f13324f49c1ab110efc6f4fd to your computer and use it in GitHub Desktop.
Shopify liquid collection loop
{% for collection in collections %}
{% if collection.products_count > 10 %}
<h4>
<a href="{{ collection.url }}">{{ collection.title }}</a>
</h4>
{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment