WooCommerce add to cart button link change to product page

Use the below code to accomplish what ever you want.


add_filter( 'woocommerce_loop_add_to_cart_link', 'epik_add_product_link' );
function epik_add_product_link( $link ) {
    global $product;
    $link = ' SHOP NOW';
    return $link;
}


Leave a Comment