Home › Forums › WoodMart support forum › Shop Page – How to keep the review stars always visible ? › Reply To: Shop Page – How to keep the review stars always visible ?
April 21, 2020 at 7:34 pm
#188940
rhg-designs
Participant
You could try to add the following code.
add_action(‘woocommerce_after_shop_loop_item’, ‘add_star_rating’ );
function add_star_rating()
{
global $woocommerce, $product;
$average = $product->get_average_rating();
echo ‘<div class=”star-rating”><span style=”width:’.( ( $average / 5 ) * 100 ) . ‘%”><strong itemprop=”ratingValue” class=”rating”>’.$average.’ ‘.__( ‘out of 5’, ‘woocommerce’ ).'</span></div></br>’;
}