function wpp_disable_empty_rating_in_archive( $html, $rating, $count ) {
if ( ( is_shop() || is_product_category() || is_product_tag() ) && empty( $rating ) ) {
return '';
} else {
return $html;
}
}
add_filter( 'woocommerce_product_get_rating_html', 'wpp_disable_empty_rating_in_archive', 10, 3 );