• Resolved deenand

    (@deenand)


    Hi I would like the title to show number of customer ratings

    [site_reviews_summary title=”{num} customer reviews”] does not work.

    Any ideas?

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    This is not possible. The “{num}” placeholder only works in the “text” shortcode option. For example:

    [site_reviews_summary text="{num} customer reviews"]

    However, if you use a custom template then you can rearrange the order of the fields in the summary shortcode and wrap the {{ text }} in heading tags.

    For example:

    <div class="glsr-summary-wrap">
        <h2>{{ text }}</h2>
        <div class="{{ class }}" id="{{ id }}">
            {{ rating }}
            {{ stars }}
            {{ percentages }}
        </div>
    </div>

    Please refer to the Site Reviews > Documentation > FAQ > “How do I change the order of the reviews summary fields?” section for more information on how to do this.

    Thread Starter deenand

    (@deenand)

    oh cool thanks so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I create Title with “{num} customer reviews”’ is closed to new replies.