Skip to main content
Login Join
Snippet · PHP

Remove WooCommerce Product Reviews Tab

Shared by Amit Dholiya · August 25, 2026 · @woocommerce_product_tabs

2 views
Back to Snippets

If you want to remove the Reviews tab from all WooCommerce product pages while keeping existing reviews intact, you can use the woocommerce_product_tabs filter.

Steps

  1. Open your theme’s functions.php file.
  2. Add the code below.
  3. Save the file.
  4. Refresh any WooCommerce product page.

Done — the Reviews tab will no longer appear.

function remove_product_reviews_tab( $tabs ) {

    unset( $tabs['reviews'] );

    return $tabs;
}

add_filter(
    'woocommerce_product_tabs',
    'remove_product_reviews_tab',
    98
);
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments