Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*Reviews (Count)*/
- add_filter( 'woocommerce_product_get_rating_html', function ( $html, $rating, $count ) {
- global $product;
- if (!is_product()){
- $html .= sprintf( '<span><a href="%s">(%s)</a></span>', get_permalink( $product->get_id() ) . '/#tab-reviews', $product->get_rating_count() );
- }
- return $html;
- }, 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement