Hi,
How can I hide (disable) the products reviews tab?
Thanks,
Thomas
Hi Thomas,
WooCommerce doesn’t have an overall option for it as far as I know.
You can disable reviews on each product individually from the Product data>Advanced section on the individual product. You can also try adding the following to your functions.php file:
add_filter( 'woocommerce_product_tabs', 'custom_woo_remove_reviews_tab', 98);
function custom_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}
Regards,
Devin