Title: Remove Review count
Last modified: August 31, 2016

---

# Remove Review count

 *  Resolved [bottlenosenomad](https://wordpress.org/support/users/bottlenosenomad/)
 * (@bottlenosenomad)
 * [10 years ago](https://wordpress.org/support/topic/remove-review-count/)
 * I am trying to remove the count of Reviews/Ratings on the Review tab of the single
   product page. Right now the tab title shows “Reviews (0)” and I just want it 
   to be “Reviews”.
 * I have made the “woocommerce” folder in my child theme and filled with the appropriate
   files like the documentation has said. Have tried editing different bits in those
   files with no luck.
 * Any help is appreciated!
 * [https://wordpress.org/plugins/woocommerce/](https://wordpress.org/plugins/woocommerce/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Caleb Burks](https://wordpress.org/support/users/icaleb/)
 * (@icaleb)
 * Automattic Happiness Engineer
 * [10 years ago](https://wordpress.org/support/topic/remove-review-count/#post-7439407)
 * Hello,
 * The review count is being added in here: [https://github.com/woothemes/woocommerce/blob/master/includes/wc-template-functions.php#L1120](https://github.com/woothemes/woocommerce/blob/master/includes/wc-template-functions.php#L1120).
   You can override that whole function in your child theme’s functions.php file,
   or you can customize the tab to just change the title: [https://docs.woothemes.com/document/editing-product-data-tabs/](https://docs.woothemes.com/document/editing-product-data-tabs/)
 * Something like this should do the trick:
 *     ```
       function wc_ninja_remove_reviews_count( $tabs ) {
       	$tabs['reviews']['title'] = __( 'Reviews', 'woocommerce' );
       	return $tabs;
       }
       add_filter( 'woocommerce_product_tabs', 'wc_ninja_remove_reviews_count', 98 );
       ```
   
 * If you aren’t sure where this custom code should go, I’d recommend reading this
   article: [https://www.skyverge.com/blog/add-custom-code-to-wordpress/](https://www.skyverge.com/blog/add-custom-code-to-wordpress/)
 *  Thread Starter [bottlenosenomad](https://wordpress.org/support/users/bottlenosenomad/)
 * (@bottlenosenomad)
 * [10 years ago](https://wordpress.org/support/topic/remove-review-count/#post-7439413)
 * That function absolutely did the trick! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Review count’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [bottlenosenomad](https://wordpress.org/support/users/bottlenosenomad/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/remove-review-count/#post-7439413)
 * Status: resolved