Skip to content
// Stop all carts from auto-opening on Add-to-Cart
document.addEventListener('DOMContentLoaded', function() {
const buttons = document.querySelectorAll('.add_to_cart_button');
buttons.forEach(button => {
button.addEventListener('click', function(e) {
setTimeout(function(){
const miniCarts = document.querySelectorAll('.astra-mini-cart, .woocommerce-cart-notice');
miniCarts.forEach(cart => {
cart.style.display = 'none';
});
}, 50);
});
});
});// Stop all carts from auto-opening on Add-to-Cart
document.addEventListener('DOMContentLoaded', function() {
const buttons = document.querySelectorAll('.add_to_cart_button');
buttons.forEach(button => {
button.addEventListener('click', function(e) {
setTimeout(function(){
const miniCarts = document.querySelectorAll('.astra-mini-cart, .woocommerce-cart-notice');
miniCarts.forEach(cart => {
cart.style.display = 'none';
});
}, 50);
});
});
});
Reviews
There are no reviews yet.