Shopify If in collection then display this -
Shopify If in collection then display this -
i trying write simple if statement, struggle shopify's system.
essentially want this:
{% if collection.product == 'discontinued' %} product discontinued. {% endif %}
if it's in collection, display text/html. otherwise wouldn't display anything. in product.liquid template.
any ideas?
this ended working:
{% c in product.collections %} {% if c.handle == "discontinued" %} product discontinued {% endif %} {% endfor %} shopify
Comments
Post a Comment