Home › Forums › WoodMart support forum › Add empty star rating to pages › Reply To: Add empty star rating to pages
April 21, 2020 at 7:33 pm
#188938
rhg-designs
Participant
Thanks for your response. I managed to get it with some custom code. Here is the code so you can provide it if someone asks the same question in the future!
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>’;
}