Add Count of the number of reviews alongside Star Rating
-
Hello,
Is it possible to modify code you posted in this topicadd_filter( 'woocommerce_product_get_rating_html', function ( $html, $rating, $count ) { global $product; if ( $html && is_archive() && $product) { $html .= sprintf( '<div class="gkartikey-product-rating-count">(%s)</div>', $product->get_rating_count() ); } return $html; }, 10, 3 );
It works only in archive, how to add rating count to all other product places like front page etc.?
Thank you
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add Count of the number of reviews alongside Star Rating’ is closed to new replies.