woocommerce remove cart on category based products

function remove_add_cart_button_product_description() {
    global $product;
    $category = 'Storehouse';

    if ( has_term($category, 'product_cat', $product->id) )
       remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
}
add_action('wp', 'remove_add_cart_button_product_description'); 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.