Hi @learningdesign
To achieve this you can add a checkbox to collapsible row and in code you can add condition.
Condition in code
Theme options schema
A user seeks to display product descriptions within collapsible tabs using Shopify metafields.
Solution provided:
main-product.liquid to include conditional logic that shows either the product description or custom content based on the checkbox stateImplementation steps:
collapsible_tab block code in main-product.liquid{% if block.settings.show_desc %}{{ product.description }}{% else %}{{ block.settings.content }}{% endif %}Current status:
The original poster is now using the Turbo theme and requests additional guidance on implementing marquee text for that specific theme. The discussion remains ongoing with theme-specific customization questions.
Hi @learningdesign
To achieve this you can add a checkbox to collapsible row and in code you can add condition.
Condition in code
Theme options schema