Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'woocommerce_product_get_rating_html', 'ast_remove_zero_rating', 11, 3 );
  4.  
  5. // Hiding zero review starts from shop page products.
  6. function ast_remove_zero_rating( $html, $rating, $count ) {
  7.  
  8. if( 0 === $rating && is_shop() ) {
  9. return '';
  10. }
  11.  
  12. return $html;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement