@dwiemas yes, kindly share the url, so that we can look into the issu
Topic summary
Goal: Show the product’s vendor name inside an accordion tab on the product page.
Context and constraints:
- Placing {{ product.vendor }} in a standalone “Vendor” page didn’t work for dynamic product data.
- Contributors clarified this requires editing the theme’s source (Liquid templates/snippets), not just page content.
- Relevant files identified: sections/product-template.liquid delegates to snippets/product-form.liquid; tabs markup is tied to the accordion (referenced via a tablist class). Code snippets and screenshots were central.
Steps taken:
- After sharing the store URL (password protected) and code excerpts, focus shifted to the tabs implementation.
- The OP edited snippets/tabs.liquid: within the Tab 3 block, replaced {{ tab3_content }} with {{ product.vendor }} so the vendor name renders in the accordion.
Outcome and status:
- The vendor now appears correctly within the accordion across product pages.
- This is a working workaround but may be brittle (overwriting tab content). No finalized best-practice refactor was provided, and the thread paused after the workaround. Definitions: Liquid = Shopify’s templating language; accordion tab = collapsible content section on the product page.