Panier
window.addEventListener("load", function () {if (window.innerWidth > 768) return;/* Astra/WooCommerce utilisent souvent cette classe */ const panels = document.querySelectorAll('.woocommerce-Tabs-panel');if (!panels.length) return;/* cacher les onglets horizontaux natifs */ const tabs = document.querySelector('.woocommerce-tabs ul.tabs'); if (tabs) tabs.style.display = 'none';panels.forEach(panel => {const titleText = panel.getAttribute('aria-labelledby') ? document.getElementById(panel.getAttribute('aria-labelledby')).innerText : "Informations";const title = document.createElement('div'); title.className = 'wc-accordion-title'; title.textContent = titleText;panel.style.display = "none";panel.parentNode.insertBefore(title, panel);title.addEventListener('click', function () {const open = panel.style.display === "block";document.querySelectorAll('.woocommerce-Tabs-panel') .forEach(p => p.style.display = "none");document.querySelectorAll('.wc-accordion-title') .forEach(t => t.classList.remove('active'));if (!open) { panel.style.display = "block"; title.classList.add('active'); } });});});
Retour en haut