document.addEventListener('DOMContentLoaded', function () { const buttons = document.querySelectorAll('.add_to_cart_button, .button'); buttons.forEach(function (button) { button.addEventListener('click', function (event) { // Prevent default behavior (redirecting to cart) event.preventDefault(); // Find the parent product and its link const product = button.closest('.product'); // Adjust selector based on your theme const productLink = product ? product.querySelector('a.woocommerce-loop-product__link') : null; if (productLink) { // Redirect to the product page window.location.href = productLink.href; } }); }); });