• Resolved America Jr

    (@cmccrone)


    Hello,

    Great plugin and thank you!

    I have figured out how to create a page to accept reviews but would like to integrate the results better on the actual course page.

    REVIEWS PAGE
    – Logged in users only
    – Works perfectly
    – [site_reviews_form hide=”name,email” assign_to=”29267″]

    COURSE PAGE
    1) I would like to add rating stars and count right below the page title (similar to any e-commerce site)

    2) I would also like to list the reviews at the bottom of the course page (similar to any e-commerce site)

    3) Can the review count be clicked and scroll the user down to the review section?
    a) or do they get sent to a different page to review the reviews? Or both options possible?

    Thank you!

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

    (@geminilabs)

    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 6 years, 2 months ago by Gemini Labs.
    Thread Starter America Jr

    (@cmccrone)

    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>

    Plugin Author Gemini Labs

    (@geminilabs)

    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 6 years, 2 months ago by Gemini Labs.
    Thread Starter America Jr

    (@cmccrone)

    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.

    Plugin Author Gemini Labs

    (@geminilabs)

    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 6 years, 2 months ago by Gemini Labs.
    Thread Starter America Jr

    (@cmccrone)

    Perfect! Got it figured out now. Thank you.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to display review count only’ is closed to new replies.