Get your own customer support community
 

Easy Vendor Lists w/ Liquid

Here is an all-Liquid solution for building a list of Vendors on your collection pages:


<ul>
{% assign: vendorname = "none" %}
{% for product in collection.products %}
{% if vendorname != product.vendor %}
<li>{{ product.vendor }}</li>
{% assign: vendorname = product.vendor %}
{% endif %}
{% endfor %}
</ul>

 
happy I’m confident

Follow this discussion to get notifications on your dashboard.


User_default_medium