You can create an account during checkout.
Need help? use our live chat
document.querySelectorAll('.products.elementor-grid .product').forEach(card => {
const productLink = card.querySelector('.woocommerce-LoopProduct-link');
card.addEventListener('click', e => {
// Ignore clicks on the Buy Now button
if (e.target.closest('.woocommerce-loop-product__buttons .button')) return;
// Ignore clicks on the link itself (so it works normally)
if (e.target.closest('.woocommerce-LoopProduct-link')) return;
// Navigate to product page
if (productLink) {
window.location.href = productLink.href;
}
});
});