Simple Snippet To Disable Add To Cart Button WooCommerce on Site 2021

disable add to cart button woocommerce

To Disable Add To Cart Button WooCommerce

To Disable Add to Cart Button On Your WooCommerce Site, use the follow code in functions.php of your theme.

remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );

Similar Posts