Hi, i am trying to show route/path way of collection so that the costumers can navigate the product in the collection.
Today i just do a “for” loop of collections to get a list of the collection the product is in. Like this:
{% for collection in product.collections %}
<li><a href="{{collection.url}}">{{collection.title}}</a></li>
{% endfor %}
This gives me:
BUT WHAT I AM TRYING TO DO:
is to get it in this format: Collection 1 / Collection2 / Collection 3
Like this:
Thank you in advance
the link to my page is

