Hey guys,
We where trying to make a brand page where people can see the brands we have. We have found some code that makes a list of all our brands and also makes those brand names linked to that brand so if people click a brand name they get redirected to all prodoucts off that brand.
code for this page; (THIS page is as a template in shopify and a .liquid file)
{{ page.content }}
{% for product_vendor in shop.vendors %}
{% assign its_a_match = false %}
{% capture my_collection_handle %} {{ product_vendor | handleize | strip | escape }} {% endcapture %}
{% assign my_collection_handle_stripped = my_collection_handle | strip | escape %}
{% for collection in collections %}
{% if my_collection_handle_stripped == collection.handle %}
{% assign its_a_match = true %}
{% endif %}
{% endfor %}
{% if its_a_match %}
how can i get this list of brands into 3 collums on pc and in 1 collum on phone?
im using the warehouse theme. in the file you can see how it currently looks
Thanks in advance,
Tim