Art of the Start

jQuery(document).ready(function($) { $(".woocommerce ul.products li.product .add_to_cart_button").each(function() { var productLink = $(this).closest("li.product").find("a.woocommerce-LoopProduct-link").attr("href"); if (productLink) { $(this).attr("href", productLink); $(this).text("View Details"); } }); });