remove product add to cart button code example

Example 1: woocommerce remove add to cart

// functions.php
add_filter( 'woocommerce_loop_add_to_cart_link', '__return_false' );

Example 2: remove add to cart woocommerce button

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart');

Example 3: woocommerce archive-product remove add

/**
 * remove add to cart buttons on shop archive page
 */
 
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10);

Tags:

Php Example