Number of reviews alongside Star Rating
-
Hello guys,
I saw code from @kimvt1991 in the topic on the forum here:https://www.ads-software.com/support/topic/add-count-of-the-number-of-reviews-alongside-star-rating/
And one of the codes worked for me so thank you very much for that. It shows count of reviews alongside star rating in the archive page but I am now approaching you with the question if I can add it to a home page to a woo-slider ?
The code:
}
add_filter( ‘woocommerce_product_get_rating_html’, function ( $html, $rating, $count ) {
global $product;
if ( $html && is_archive() && $product) {
$html .= sprintf( ‘<span>(%s)</span>’, $product->get_rating_count() );
}return $html;
}, 10, 3 );Thank you in advance
The page I need help with: [log in to see the link]
- The topic ‘Number of reviews alongside Star Rating’ is closed to new replies.