RemoveImageTitlePriceQuantityAdd To Cart
document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll('.menu-cart, .cart-contents').forEach(function(el){ el.addEventListener('click', function(e){ e.preventDefault(); const btn = document.querySelector('.instanito-toggle-btn'); if(btn){ btn.click(); } }); }); }); document.addEventListener('click', function(e) { let btn = e.target.closest('a.checkout-button, .wc-proceed-to-checkout a'); if (btn) { e.preventDefault(); e.stopImmediatePropagation(); // Remove all other click events btn.onclick = null; // Direct hard redirect window.location.href = '/checkout/'; } }, true);