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
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:
Status: The discussion provides a technical solution but remains open for implementation by the original poster.
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
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!