Replace Add To Cart Everywhere in site
-
Hi, I want to replace add to cart button with a View Details Button which will link to the product single page. I have used this code below to remove add to cart button and replace it only on the shop page of my site. But I have products on other pages of my site where add to cart button still exists, so how to replace it everywhere in my site.
add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘replacing_add_to_cart_button’, 10, 2 );
function replacing_add_to_cart_button( $button, $product ) {
$button_text = __(“View product”, “woocommerce”);
$button = ‘get_permalink() . ‘”>’ . $button_text . ‘‘;return $button;
}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Replace Add To Cart Everywhere in site’ is closed to new replies.