Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save milkbottlelough/367edfdffb24430d3672b4b85d786dd8 to your computer and use it in GitHub Desktop.
Save milkbottlelough/367edfdffb24430d3672b4b85d786dd8 to your computer and use it in GitHub Desktop.
Check if a product is in a particular collection (shopify)
{% assign found = false %}
{% for c in product.collections %}
{% if c.handle=='merchandise' %}
{% assign found = true %}
{% endif %}
{% endfor %}
{% if found %}
... do stuff ...
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment