How can I make the vendor name clickable on the Dawn theme product page?

Hello,
i read whole discussions on this page about vendor and how to make it clickable. I go trought all the answers and discussion. I think i am not such stupid but i wasnt able to find any of part in our code, so then i was unable to modify code.

We are using Dawn theme and what we are looking for is to make vendor name (dynamic resouce) clickable, so when i am on exact product, by clicking on vendor name i can be forwarded to whole vendor collection page.

The best i was able to find is in this thread : https://community.shopify.com/c/shopify-design/how-to-make-vendor-name-clickable-in-dawn-theme/td-p/1333245

i tried it but it make an second vendor name on top (but it is clickable)

I would like the most to edit the main “vendor” text and be able to make it as link

In code, only “vendor” text is in main-product.liquid

and in product.json.

Also in card-product.liquid i didnt find solution

Thanks for any help!

Hi!
for everyone with this kind of problem i find an solution which dont require editing base code.
I use custom liquid element, so i can easily in editor page change base location

and inserted text:

{% assign product_collection_handle = product.collections.first.handle | upcase %}

{% if product_collection_handle %}

{{ product.vendor }}


{% else %}

{{ product.vendor }}

{% endif %}

first marked part is for removing underline (for me it worked)

and second color is for color to custom your text.

Now i am able to click on vendor and go to vendor collection page.

1 Like