Advertisement
michaellevelup

Hide reviews count on single products page

Aug 17th, 2022
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. /*Reviews (Count)*/
  2.  
  3.  
  4. add_filter( 'woocommerce_product_get_rating_html', function ( $html, $rating, $count ) {
  5.     global $product;
  6.  
  7.     if (!is_product()){
  8.         $html .= sprintf( '<span><a href="%s">(%s)</a></span>', get_permalink( $product->get_id() ) . '/#tab-reviews', $product->get_rating_count() );
  9.     }
  10.  
  11.     return $html;
  12. }, 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement