Hello,
Step 1: Navigate to your Shopify admin panel and go to “Online Store.”
Step 2: Click on “Themes” and then select Edit code
Step 3: Find base.css
If you insert this js script in your theme assets/product-info.js file it will solve your issues
document.querySelectorAll('.product__accordion details').forEach((accordion) => {
accordion.addEventListener('click', function() {
document.querySelectorAll('.product__accordion details').forEach((otherAccordion) => {
// Close other accordions if they are open and not the one clicked
if (otherAccordion !== accordion) {
otherAccordion.removeAttribute('open');
}
});
});
});
Hope your issue will be solved
thank you
