Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * This fixes the "Show reviews count" option in the WoodMart theme.
- *
- * @see https://woodmart.xtemos.com/
- */
- function glsr_woodmart_product_rating_count($html) {
- global $product;
- if (!function_exists('woodmart_get_opt') || !function_exists('woodmart_show_reviews_count')) {
- return $html;
- }
- if (!is_a($product, 'WC_Product')) {
- return $html;
- }
- if (str_contains($html, 'wd-star-rating')) {
- return $html;
- }
- if (woodmart_get_opt('show_reviews_count')) {
- ob_start();
- woodmart_show_reviews_count();
- $html .= ob_get_clean();
- }
- return sprintf('<div class="wd-star-rating">%s</div>', $html);
- }
- add_filter('woocommerce_product_get_rating_html', 'glsr_woodmart_product_rating_count', 25);
Advertisement
Add Comment
Please, Sign In to add comment