Shopify themes, liquid, logos, and UX
Hello everyone, i hope you all doing well
I can't find a way to add collections tags to product page in Dawn theme, and tags with links to each collection page that product belong.
Like this one in screenshot :
Solved! Go to the solution
This is an accepted solution.
Hey @ocelot Check out the steps and codes given by Kate here which was accepted as a solution in this thread https://community.shopify.com/c/shopify-design/how-to-add-a-link-to-the-brand-collection-on-product-...
This is an accepted solution.
Hey @ocelot Check out the steps and codes given by Kate here which was accepted as a solution in this thread https://community.shopify.com/c/shopify-design/how-to-add-a-link-to-the-brand-collection-on-product-...
You can easily do it without editing theme code, just by using "Custom Liquid" block or section.
{% if product.collections.size > 0 %}
<p class="product__text inline-richtext">
Collections:
{% for c in product.collections %}
<a class="link" href="{{ c.url }}">
{{ c.title }}
</a>
{% unless forloop.last %}, {% endunless %}
{% endfor %}
</p>
{% endif %}
Hi @tim
Thanks a lot for you time and for relying, the solution above worked just fine
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025