What's your biggest current challenge? Have your say in Community Polls along the right column.

Auto-open first collapsible row?

Solved

Auto-open first collapsible row?

LightStyl
Excursionist
18 0 5

Hi everyone, I tried following this addition

 

to the product code but keep getting this error:

  • Invalid JSON in templates/product.cleanser.json
 
Using the sense theme (website is plumeskin(dot)com) but each product has its own template so maybe that's creating a wrinkle in the code? Would love for at least the first tab/row to auto-open. Any advice or direction would be very much appreciated!
Accepted Solution (1)
Shadab_dev
Shopify Partner
926 49 91

This is an accepted solution.

Open main-product.liquid file from your code editor and paste this at the bottom of everything

 

<script>
document.addEventListener('DOMContentLoaded',()=>{
const tab = document.querySelector('.product .product__accordion');
tab.querySelector('details').setAttribute('open','');
tab.querySelector('summary').setAttribute('aria-expanded','true');
})
</script>

This will open the first one of the tabs on load 

 

 

Buy me Coffee, if you feel i was helpful. Email Me or WhatsApp me for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.

View solution in original post

Replies 3 (3)

Shadab_dev
Shopify Partner
926 49 91

Share the store url. 

Buy me Coffee, if you feel i was helpful. Email Me or WhatsApp me for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.
LightStyl
Excursionist
18 0 5
Shadab_dev
Shopify Partner
926 49 91

This is an accepted solution.

Open main-product.liquid file from your code editor and paste this at the bottom of everything

 

<script>
document.addEventListener('DOMContentLoaded',()=>{
const tab = document.querySelector('.product .product__accordion');
tab.querySelector('details').setAttribute('open','');
tab.querySelector('summary').setAttribute('aria-expanded','true');
})
</script>

This will open the first one of the tabs on load 

 

 

Buy me Coffee, if you feel i was helpful. Email Me or WhatsApp me for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.