How can I make vendors clickable in Icons theme?

Topic summary

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:

  • Liquid is Shopify’s templating language. The link_to_vendor filter converts the vendor name into a link to the vendor collection/page.
  • Screenshots and code snippets were used to locate the correct template; no full code was publicly posted.

Outcome: user confirmed the change worked. Status: resolved; no further action items or open questions reported.

Summarized with AI on February 3. AI used: gpt-5.

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!