1. [site_reviews_summary assigned_to=29267]
2. [site_reviews assigned_to=29267 pagination=ajax id="all-the-reviews"]
3. Simply add a custom link to your page with the ID of the shortcode above as the href value.
For example: <a href="#all-the-reviews" id="scroll-to-reviews">Click to view the reviews</a>
You can use some javascript to scroll the page when you click.
For example, using jQuery:
$('#scroll-to-reviews').on('click', function(ev) {
ev.preventDefault();
$(window).scrollTop($('#all-the-reviews').offset().top);
});
4. Please see the Site Reviews > Documentation page for more information on the available shortcodes and shortcode options.
For example, you can use “post_id” as the value for the “assign_to” and “assigned_to” options instead of entering a specific postID number if the postID number is the current page. (i.e. [site_reviews assigned_to=post_id]
Site Reviews also provides blocks for the WordPress 5.0 Block editor.
-
This reply was modified 7 years, 6 months ago by
Gemini Labs.
Fast support! Ill make sure to leave a good review.
1) This one isnt working. Its displaying the shortcode on the live site.
I tried all of these.
[site_review_summary]
[site_review_summary assigned_to=29267]
[site_review_summary assigned_to="29267"]
<removed site link>
Sorry, I misspelt the shortcode. It should be:
[site_reviews_summary]
And since you are assigning reviews to the current page, you can do this instead:
[site_reviews_summary assigned_to=post_id]
[site_reviews assigned_to=post_id pagination=ajax]
[site_reviews_form assign_to=post_id]
-
This reply was modified 7 years, 6 months ago by
Gemini Labs.
Got it all working! Thanks again.
Future update suggestion or maybe this is possible?
It would be nice to have the summary/review count next to the stars like this
5 ***** (64 Reviews)
https://snag.gy/YNqxwP.jpg
Again, this plugin is great and the support is even better!
Im going to donate after I get it up and running.


Finally, add some custom CSS:
.glsr-summary-text { display: inline-block !important; }
Also, you only need to use one [site_reviews_summary] shortcode on the page:
[site_reviews_summary assigned_to=post_id hide=bars]
-
This reply was modified 7 years, 6 months ago by
Gemini Labs.
Perfect! Got it figured out now. Thank you.