Does anyone know of a way I can add the collection which a product sits within into my product description to be something like
Shop the full {{collection}} which would pull though the first collection any product has been tagged within
Does anyone know of a way I can add the collection which a product sits within into my product description to be something like
Shop the full {{collection}} which would pull though the first collection any product has been tagged within
hello @kevinjwiles
You can access the collections that a product belongs to using the product object.
{% for collection in product.collections %}
{{ collection.title }}
{{ collection.handle }}
{% endfor %}