BLOG

Shopify How to display Product tag(s) in category listing page?

<ul class="product-tags">
  {% for tag in product.tags %}
  <li><a href="/collections/all/{{ tag | handleize }}">{{ tag }}</a></li>
  {% endfor %}
</ul>
Share:

Post a Comment!