Français

Panier
Retour en haut
document.addEventListener('DOMContentLoaded', () => { document.querySelectorAll('body.page-id-293 .woocommerce ul.products li.product').forEach(li => { if (!li.querySelector('.button')) { const link = li.querySelector('a[href*="/?add-to-cart="]'); if (link) { const pid = link.href.match(/add-to-cart=(\d+)/)[1]; const btn = document.createElement('a'); btn.href = link.href; btn.className = 'button'; btn.textContent = 'Ajouter au panier'; li.appendChild(btn); } } }); });