/* Hide Add to Cart Button in WooCommerce */
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 );
add_filter( 'woocommerce_is_purchasable', '__return_false');
If you want to run WooCommerce in Catalogue Mode showing Pricing, without letting Customers Purchase products, add the above code to child theme’s functions.php.
Brands who want to display prices of their products to their viewers, can use this feature in WooCommerce.