If you want to remove the review tab completely from your WooCommerce shop put the following snippet to your function.php file :
add_filter( 'woocommerce_product_tabs', 'sb_woo_remove_reviews_tab', 98); function sb_woo_remove_reviews_tab($tabs) { unset($tabs['reviews']); return $tabs; }