How do you remove display of WooCommerce product category on single product page?

As an alternative to editing the meta template, you can prevent the meta information from being displayed on single product pages at all. This can be handy if you also don’t want to display the SKUs. Here is how to do it:

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );

It goes to your functions.php.