I am trying to get my brand page to display the vendor’s collection image. The code I currently have results in all the collection images to display rather than just the vendor ones.
{% for collection in collections %}
{% assign current = "" %}
{% for product_vendor in shop.vendors %}
{% assign first_letter = product_vendor | strip_html | upcase | truncate: 1, '' %}
{% unless first_letter == current %}
{{ first_letter }}
{% endunless %}
- {{ product_vendor }}
{% endfor %}
{% assign current = first_letter %}
{% endfor %}