You can create an account during checkout.
Need help? use our live chat
document.querySelectorAll('.products.elementor-grid .product').forEach(function(card) {
card.addEventListener('click', function(e) {
// If clicked element is the Buy Now button, do nothing
if (e.target.closest('.woocommerce-loop-product__buttons .button')) return;
// Otherwise, go to product URL
const url = card.getAttribute('data-url');
if (url) {
window.location.href = url;
}
});
});