Remove the add to cart button in WooCommerce

Remove the add to cart button in WooCommerce.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'woocommerce_init', 'remove_all_wc_add_to_cart' );
function remove_all_wc_add_to_cart() {
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.