Hi Elise.
No problem.
I found a code for the functions.php file that is working
/**Rating in archive pages**/
add_filter('woocommerce_product_get_rating_html', function( $html, $rating, $count ){
global $product;
$review_count = $product->get_review_count();
if ( $review_count && !is_product() ) {
$html = '<div class="rating-wrapper">' . $rating . $html . $review_count . '</div>';
}
return $html;
},10,3);
Also with this css, then its on one line:
ul.products li.product .star-rating{
float:left;
margin: 0 auto 0 70px;
}
.gkartikey-product-rating-count{
height: 1em;
line-height: 1em;
margin-left: 0px;
display: inline-block;
}
.price-wrapper .price {
clear: both;
}
Thank youanyway for your time!