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

Product page keep collapsible tabs open

Solved

Product page keep collapsible tabs open

jont1
Tourist
10 0 2

Hello, I would like to modify my product page to keep the "Description" and "Shipping Details" tabs open instead of being collapsible. 

https://shop.reversewinesnob.com/products/insider-deal-all-stars-2024-white-intro-4-pack

 

jont1_0-1731617055624.png

 

Thank you for your help

Accepted Solution (1)

tim
Shopify Partner
3911 394 1435

This is an accepted solution.

Put this into Custom Liquid block

<script>
 let tabs = document.querySelectorAll('product-info details');
 if (tabs) {
   tabs[0].setAttribute('open',true);
   tabs[1]?.setAttribute('open',true);
 }
</script>
If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

View solution in original post

Replies 3 (3)

jont1
Tourist
10 0 2

Anyone?

tim
Shopify Partner
3911 394 1435

This is an accepted solution.

Put this into Custom Liquid block

<script>
 let tabs = document.querySelectorAll('product-info details');
 if (tabs) {
   tabs[0].setAttribute('open',true);
   tabs[1]?.setAttribute('open',true);
 }
</script>
If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
jont1
Tourist
10 0 2

Beautiful, thank you, worked like a charm!