By default WooCommerce product meta is displayed on the single product page. Such data can reveal a bit about business information and tricks. In the below image you can clearly see the product meta before applying any snippet to it.
Now let’s remove the meta from the single product. Here is an easy solution that helps hide meta from your customers.
insert to the function.php in your child theme.
// remove product meta on single product page
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );