disable add to cart woocomerce code example
Example 1: woocommerce remove add to cart
// functions.php
add_filter( 'woocommerce_loop_add_to_cart_link', '__return_false' );
Example 2: jquery woocommerce disable add to cart css
$('.single_add_to_cart_button, button.product_type_simple').prop('disabled', false);