How to display review count in Woo Product Carousel
-
Hello, i want to display review count in Woo product carousel. I have code snippet, but it works only in archives/categories and shop
add_filter( 'woocommerce_product_get_rating_html', function ( $html, $rating, $count ) { global $product; if ( $html && is_archive() && $product) { $html .= sprintf( '<div class="my-product-rating-count">(%s)</div>', $product->get_rating_count() ); } return $html; }, 10, 3 );
I tried to look in powerpack documentation, but didn’t find any solution.
Thank you
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to display review count in Woo Product Carousel’ is closed to new replies.