Hello, Catholicans,
The review tab is a feature of the WooCommerce plugin. To remove the (0) from the review tab, please add the following code to your child theme’s functions.php file:
add_filter( 'woocommerce_product_tabs', 'wp_woo_rename_reviews_tab', 99);
function wp_woo_rename_reviews_tab($tabs) {
global $product;
$check_product_review_count = $product->get_review_count();
if ( $check_product_review_count == 0 ) {
$tabs['reviews']['title'] = 'Reviews';
} else {
$tabs['reviews']['title'] = 'Reviews('.$check_product_review_count.')';
}
return $tabs;
}
We hope this resolves your issue.
Best Regards,
8Theme’s Team
One standard license is valid only for 1 project. Running multiple projects on a single license is a copyright violation.