Hello!
I'd like to know the best way to get product types data in a specific collection.
What I'm trying to create is something like:
<ul>
{% for product_type in collections.types %}
<li>
{{ product_type | link_to_type }}
</li>
{% endfor %}
</ul>
but, I couldn't find types object under the collections object.
{% for product_type in shop.types %}
{% endfor %}
I could create a link something like this one by one instead (and this should work fine).
But, is there a better way to get types in a specific collections??
<a href="collections/{collection-name}?filter.p.product_type={product-type1}" >product-type1</a>
thank you.
Solved! Go to the solution
This is an accepted solution.
Hi @doughnut1218411,
You can refer to the all_types property of the collection, refer: https://shopify.dev/api/liquid/objects/collection#collection-all_types
Hope it helps!
This is an accepted solution.
Hi @doughnut1218411,
You can refer to the all_types property of the collection, refer: https://shopify.dev/api/liquid/objects/collection#collection-all_types
Hope it helps!
User | RANK |
---|---|
38 | |
34 | |
15 | |
12 | |
10 |