add_filter( 'woocommerce_product_get_rating_html', function( $html ) {
global $product;
if( $html && $product ) {
$html .= sprintf(
'<span class="product-rating-count">(%s)</span>',
number_format( intval( $product->get_rating_count() ) )
);
}
return $html;
} );
Recommended CSS to accompany
.woocommerce .products .star-rating {
display: inline-block;
margin: 0;
}