You can create an account during checkout.
Need help? use our live chat
/**
* Fix for WooCommerce Product Card - Prevent Buy Now button from triggering card click
* Add this script to your theme or use a plugin like "Insert Headers and Footers"
*/
document.addEventListener('DOMContentLoaded', function() {
// Select all Buy Now buttons within product cards
const buyButtons = document.querySelectorAll('.products.elementor-grid .product .woocommerce-loop-product__buttons .button');
buyButtons.forEach(function(button) {
button.addEventListener('click', function(event) {
// Stop the click event from bubbling up to parent elements (the card link)
event.stopPropagation();
event.stopImmediatePropagation();
});
});
// Also prevent the button container from propagating clicks
const buttonContainers = document.querySelectorAll('.products.elementor-grid .product .woocommerce-loop-product__buttons');
buttonContainers.forEach(function(container) {
container.addEventListener('click', function(event) {
// Stop propagation to prevent card click
event.stopPropagation();
});
});
});