• Resolved jrswordpress

    (@jrswordpress)


    Hello, is it possible to show {num} next to each line of the 1-5 star rated reviews on the summary instead of percentages?

    -Josh

    • This topic was modified 2 years, 12 months ago by jrswordpress.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    You can swap the percentage with the number of reviews like this:

    add_filter('site-reviews/summary/counts', function ($percent, $numReviews) {
        return $numReviews;
    }, 10, 2);

    If you do this, you may also wish to change the text alignment. You can do that like this:

    .glsr-bar-percent { text-align: left !important; }

    Thread Starter jrswordpress

    (@jrswordpress)

    Awesome, thank you!! Is it possible to add a parentheses around the count? Example: (9)

    Plugin Author Gemini Labs

    (@geminilabs)

    return sprintf('(%s)', $numReviews);

    Thread Starter jrswordpress

    (@jrswordpress)

    Perfect!! Thank you very much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Review count instead of percentages’ is closed to new replies.