Hi @curiousjoe ,
Please go to product-form.liquid file, find ‘product.vendor’ and change code here:
Code:
product.vendor
=>
product.vendor | link_to_vendor
Hope it helps!
Goal: make vendor names on the product page clickable in the Icons theme.
Initial guidance: update the template to turn the vendor into a link using Liquid. Suggested change was to replace occurrences of product.vendor with product.vendor | link_to_vendor in main-product.liquid.
Issue: product.vendor was not present in main-product.liquid; only a schema setting show_vendor was found. The product.liquid referenced sections, and a featured-product.liquid contained the “Show vendor” checkbox.
Resolution: the correct file was product-form.liquid. Edit that file, find product.vendor, and change it to product.vendor | link_to_vendor.
Notes:
Outcome: user confirmed the change worked. Status: resolved; no further action items or open questions reported.
Hi @curiousjoe ,
Please go to product-form.liquid file, find ‘product.vendor’ and change code here:
Code:
product.vendor
=>
product.vendor | link_to_vendor
Hope it helps!