WooCommerce: How To Remove Product Reviews Tab

Product Reviews are beneficial to your ecommerce store because they provide social proof which is proven to increase conversion rates and additionally, they provide unique content for SEO.

But, depending on your website’s needs, some people may not want to show customer reviews. If thats that case, open your theme editor:

Appearance > Editor

(BTW, I highly recommend editing your child theme files and not your theme’s core files)

And open the functions.php file and at the bottom of your file, add the following:

add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
    function wcs_woo_remove_reviews_tab($tabs) {
    unset($tabs['reviews']);
    return $tabs;
}

Then go to one of your product pages on your WooCommerce store and click refresh.

Done and done!

Related Posts

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.