Make VENDOR clickable on collectioon page and product page - Dawn theme

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

  1. 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 %}.
  2. 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