Hi, does anyone know how to make the VENDOR name clickable on both collection and product pages? I want it to take you to the vendor collection page. I also want the font and style to remain the same, ie not be a different colour or underlined. TIA
- In the code editor, find the section where the vendor information is displayed. This section may vary depending on your theme, but common code snippets to look for include
{{ product.vendor }}or{% if product.vendor %}. - Replace the existing code with the following code snippet:
{% if product.vendor %}
{{ product.vendor }}
{% endif %}
1 Like
Have you any idea which section? I’ve tried to search but nothing’s coming up. I’m using the DAWN theme, TIA