You can create an account during checkout.
Need help? use our live chat
document.querySelectorAll('.products.elementor-grid .product').forEach(function(card) {
// Find the main product link
const link = card.querySelector('.woocommerce-LoopProduct-link');
if (!link) return; // skip if no link
// Make the card clickable except for the Buy Now button
card.addEventListener('click', function(e) {
// If click is inside Buy Now button, do nothing
if (e.target.closest('.woocommerce-loop-product__buttons .button')) return;
// Otherwise, go to product link
window.location.href = link.href;
});
});