Reply 354676 to: How to remove this (0) in review tab ?

Avatar: Tony Rodriguez
Tony Rodriguez
Support staff
April 27, 2023 at 08:52

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

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.