Thank you for taking the time to read my issue.
So I’ve made an Accordion/ drop down menu in my products page.
It works but I have some issues with it.
- I have built an accordion on my page here however it is not collapsing. Is anyone able to suggest why? I will paste below the code used in the page template and also the page.
{%- if product.metafields.tab1.title and product.metafields.tab1.content -%}
### {{ product.metafields.tab1.title }}
{{ product.metafields.tab1.content }}
{%- else -%}
{{ product.description }}
{%- endif -%}
{%- if product.metafields.tab2.title and product.metafields.tab2.content -%}
### {{ product.metafields.tab2.title }}
{{ product.metafields.tab2.content }}
{%- endif -%}
{%- if product.metafields.tab3.title and product.metafields.tab3.content -%}
### {{ product.metafields.tab3.title }}
{{ product.metafields.tab3.content }}
{%- endif -%}
{%- if product.metafields.tab4.title and product.metafields.tab4.content -%}
### {{ product.metafields.tab4.title }}
{{ product.metafields.tab4.content }}
{%- endif -%}
{%- if product.metafields.tab5.title and product.metafields.tab5.content -%}
### {{ product.metafields.tab5.title }}
{{ product.metafields.tab5.content }}
{%- endif -%}