Make vendor click to product

Topic summary

A user wants to make vendor names on their collection page clickable, linking to product pages. Currently, the vendor text appears as non-functional.

Proposed Solution:
Edit the product-item.liquid theme file by wrapping the vendor code (e.g., {{ prod.vendor }} or {{ product.vendor }}) in an anchor tag that links to the product URL using Liquid syntax like {{ product.url }}.

Implementation Options:

  • Manually edit the theme code following the provided markup examples
  • Send a collaborator request to a developer for safer implementation

Status: The discussion provides a technical solution but remains open for implementation by the original poster.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Is it possible on collections to have the vendor click to the product also? Right now it’s just a dead link:

my site is: https://vazluxe.com/collections/womens-dresses

1 Like

Hi @Luxurymrkt

You can do that by editing the code for the product product-item**.liquid** file, wrap your vendor code, which something like this

{{ prod.vendor }}

To this

{{ prod.vendor }}

Or

{{ product.vendor }}

To this

{{ product.vendor }}

Yes, it’s possible! The best approach would be to send a collaborator request to your developer so they can update the theme code instead of manually editing it yourself. Let me know if you need any guidance on that!