Remove the Reviews tab
Removes the Reviews tab from product pages, for shops that don’t take reviews.
<?php
add_filter(
'woocommerce_product_tabs',
static function ( $tabs ) {
unset( $tabs['reviews'] );
return $tabs;
},
98
);
Good to know
Applies to classic product templates.
In these packs
- WooCommerce essentials: The small WooCommerce changes shop owners ask for most.