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
- Open your theme’s
functions.phpfile. - Add the code below.
- Save the file.
- 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
);