web analytics
See What's New On Our Amazon Storefront

Stay In The Know

jQuery(document).ready(function($){ // Loop through all external product links $('li.product').each(function() { var product = $(this); // Check if the product is an external/affiliate product if (product.find('.button.add_to_cart_button').length > 0 && product.find('.product-type-external').length > 0) { // Disable click on the product image product.find('.woocommerce-LoopProduct-link').click(function(e) { e.preventDefault(); // Prevent default action (redirect) }); } }); });