multiple pages
-
hi..
i want different review “forms” & “summaries” & “latest reviews” for 2 different pages on my site.how do i achieve this functionality?
kindly state solution step-by-step
The page I need help with: [log in to see the link]
-
@richcrx Using “post_id” as the assign_to/assigned_to value will only work if the shortcode is used on the page inside The Loop (Or any loop that sets the global $post object) as it uses the global $post object to get the current Post ID.
For example, it will work if used in a shortcode in the page content, but it may not work in a widget on your sidebar as the sidebar will likely be used outside of the loop. In that case you will have to use the actual Post ID value instead.
Thanks for your response and help. I’m not really sure how the loop works or what can impact it, but I was using the ‘shortcode’ element using the elementor page builder, and it wasn’t working, it was just adding the review to all pages.
I have since changed from the elementor shortcode element and used the wordpress element, but I have no option to add pagination on the reviews (I only want to display 2 reviews, but add pagination if there are more), and there is no option for schema.
You can find an image of what I mean here: https://drive.google.com/file/d/1nnJMXvPKY4g2hx07E7SI6nz2i1NVUTXd/view?usp=sharing
Any thoughts on how I can overcome this?
Thanks so much for your help.
hi @richcrx
i think you are messing with the shortcodes.
kindly read those instructions on the shortcode page again.best regards!
The widgets do not allow you to use pagination or the schema. For those options, you will need to use the shortcodes. I cannot view the Google Drive image, perhaps use imgur.com instead. Please send a screenshot of how you are using the shortcode.
hi @geminilabs
how do i make the form tabs “rounded”?
like where reviewers make input from. i want to style it to be roundedbest regards!
@onyekaxt – I’ve been looking at the shortcode instructions for hours, and I’ve followed it all to a tee.
@geminilabs – The following images are the steps taken when using shortcodes;
1 – https://drive.google.com/file/d/1PHrpDqX22n62CqOR157qRJ7SUuMwhBe8/view?usp=sharing
2 – https://drive.google.com/file/d/1mVf5wW4000_8r57nbEzjIy92HS08f8Xe/view?usp=sharing
3 – https://drive.google.com/file/d/152rc–2aVP9Okeb_Xt3qZutjPQMXEfGX/view?usp=sharing
4 – https://drive.google.com/file/d/1dseHG4nLfePGdBKxWMIaemo9wKQ8POIo/view?usp=sharing
5 – https://drive.google.com/file/d/1PCaHjLiBArOgz8p4Tdm1zckt9aKcip2M/view?usp=sharing
Appreciate any help you can give me on this.
Thanks,
Richard.-
This reply was modified 5 years, 9 months ago by
richcrx.
It’s because you are using the shortcodes incorrectly. You are using them like this:
[site_reviews_form assign_to="post_id",site_reviews_form hide="email,terms"]This is incorrect. Adding multiple shortcode options should look like this:
[site_reviews_form assign_to="post_id" hide="email,terms"]hi @geminilabs
i smiled when i opened that link, and that’s not cos it solved my problem, but cos you found the “easiest” way to proffer solution.
assuming i wasn’t working on a cms/framework, that would help, heck i wouldn’t even ask, i’d go straight to googling code snippets.
but this is wordpress, and a plugin that i’m not the author, coupled with the fact that i’m not a developer, i’m just tech savvy!my point is, i was expecting you show me where EXACTLY to place/edit the codes.
also, the summary bars looks unaligned on my site. you might wanna take a look and tell me what to do the fix it. https://ezekaworld.com/bale-home
GREAT PLUGIN!kind regards!
There are thousands if not tens of thousands of themes out there, and each website has it’s own unique style. It’s impossible to support every variation of every theme “out of the box”. Site Reviews is built to be as light as possible, and while it tries to provide sensible styling defaults, it does not include options to customise every aspect of the way is it displayed on your website.
Please understand that I can only guarantee support for features that the plugin provides. Anything else is a bonus.
The link I provided explains how to use CSS to add rounded borders for your form fields.
WordPress provides a specific place to add custom CSS to your active theme (WordPress > Appearance > Customize > Additional CSS) as this is a very common requirement for most WordPress website users. If you are unable to use the “Additional CSS” option (i.e. if your theme has disabled it), then you can install one of the many plugin that allow you to add custom CSS to your website.
Another problem with there being so many different themes is that they are not all built equally well. CSS rules are controlled by specificity. This means that a CSS rule with a higher specificity will always override CSS rules with lower specificity.
For example, using the following CSS:
#content p { color: red; } p { color: blue; }Paragraphs inside an element with an ID attribute of “content” (i.e.
<div id="content>...</div>will be red, even though the CSS rule at the bottom says that paragraphs should be blue.Some themes misuse specificity in their stylesheets, this is what causes the majority of CSS problems with Site Reviews.
By the way, the summary bars look fine here in the Chrome browser:

HI @geminilabs
wow, you made a whole lot of sense!as regards the summary bars, take a look at mine https://www.dropbox.com/s/xgskw2g6ytz6jki/capture_summary.PNG?dl=0
kind regards!
This is caused by a browser bug specific to Internet Explorer. You can fix it with the following CSS:
.glsr-bar .glsr-bar-background::before { margin-top: -6px; top: 50%; } -
This reply was modified 5 years, 9 months ago by
The topic ‘multiple pages’ is closed to new replies.