Hi,
Please use the following snippet in functions.php to remove specific tabs:
add_filter( 'woocommerce_product_tabs', 'custom_woo_remove_reviews_tab', 98);
function custom_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}
Thanks