Remove product meta on a single product in WooCommerce

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.

Before applying snippet

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 );
After applying snippet

Edit WooCommerce Products from Frontend

Leave a Comment

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

Scroll to Top