There are two ways in the latest version of woocommerce:
You can hide css or inside woocommerce / include / wc-template functions
function remove_loop_button(){
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 );
}
add_action('init','remove_loop_button');
On the product page and on one page, both buttons will be deleted immediately.
Thanks Tripathi
source
share