No – we are all about perfection of ratings. There are other great solutions for comments/reviews. Here are some of them: DISQUSS, LiveFyre, Yotpo.
Results
-
Do you support text reviews?
-
Does the RatingWidget allows user to leave a comment with the rating?
At RatingWidget we focus on ratings. That’s where we excel and focus at. We do not support commenting. If you like to add comments to your site, there are plenty of great solutions for that. For example: DISQUS, Facebook Comments, Livefyre.
-
How is RatingWidget for Shopify different from Yotpo?
Bottom line – we help to bring new potential customers to the store while Yotpo helps to close the deal by showing previous clients reviews (if positive). How we do that? We help the store to use the wisdom of the crowd, and collect an instant feedback using straight forward 5 star rating. Then, by leveraging the Rich-Snippets Premium feature, the ratings intelligently embedded into Google’s SERP to increase the CTR by up to 30%. More traffic = more sales!
-
Do you support aggregated ratings for bbPress forum topics / replies?
Aggregated ratings are only supported for users’ ratings. There could be a great forum Topic/Question with terrible Replies/Answers. Thus, we want to provide the option to separately rate forum topics and forum replies.
-
Can I have unlimited widgets on one page? What’s the limit?
You can have up to 200 different ratings on the same page and unlimited number of ratings instances. If you need more than that please contact [email protected]
-
Can I obtain votes data via .csv or .xlsx file?
Our Business plan users are eligible for monthly data extraction to CSV file.
-
I’ve followed all the Rich-Snippets instructions but I don’t see any ratings on Google search results – what’s wrong?
The first thing you should do is to make sure that you’ve configured the ratings’ rich-snippets correctly. Go back to the this topic and follow the instructions. Once the configuration is right, usually it takes about two weeks until Google will add the Rich-Snippets ratings. It’s really varies according your store’s content quality, crawling frequency, pagerank and many other parameters. Even though we have many clients that the ratings appeared on their SERP, we can’t assure that Google will eventually add the ratings’ rich-snippets. Unfortunately we don’t have an access to their algorithms.
-
When someone voted a rating, can he ever vote it again?
By default, every visitor can rate each rating ONCE. This voting frequency is configurable and could be changed to:
UNLIMITED: Visitor can contribute as many votes as he likes.
DAILY: Visitor can rate once in every 24 hours.
WEEKLY: Visitor can rate only once in every 7 days.
MONTHLY: Visitor can rate once in every 30 days.
YEARLY: Visitor can rate once in every 365 days.
You can read more about the frequency configuration in our documentation.
-
How do you identify the visitor / voter?
In order to prevent from multiple votes from the same visitor (check out the topic about voting frequency here), our default identification technique is cookies. We leverage both regular HTTP cookie and LSO (Local shared object a.k.a Flash Cookie) to uniquely mark the visitor’s device. As you probably figured out, it’s very simple to clean your cookies or use incognito mode, to actually make more than one vote from the same device. Thus, if fraud votes is a critical issue for you, our premium product support additional identification methods:
- By IP: These visitor identification method means that by default only one vote can be contributed from the IP. The advantage of this method is that it’s much harder to change IPs than cookies (requires some hacking skills but possible using proxies, etc.). The disadvantage is that different visitors who are using the same NAT (E.g. same router device), won’t be able to vote more than once.
- By Login: We provide a very useful JavaScript callback called beforeRate, you can use it to force a login to your site before being able to rate. Note: These method is also not 100% safe and could be hacked.
- By Social Login: Before a visitor can rate, he is required to connect his social identify with RatingWidget (currently we’ve implemented Facebook Connect). We believe this is the most safe identification method for many reasons. The main one is that in order to make fraud/fake vote – it requires a new social identity (creating of social identity takes time, requires unique email, etc.). The disadvantage of this method is that it significantly reduces the number of votes (some people don’t like to connect their social identity with external services).
-
Do you have a refresh code for Ajax loaded content?
In order to refresh / re-render the ratings on the page all you need to do is execute the following JavaScript line.
RW.render(null, true);
You can add the following code snippet right before your closing </body> tag (requires jQuery support) and it will automatically do the job.
<script type="text/javascript"> (function($){ $(document).ajaxSuccess(function() { setTimeout(function(){ if ("undefined" !== typeof(RW)) RW.render(null, true); }, 500); }); })(jQuery); </script>
If you care about efficiency, call this method only after you add new ratings’ HTML containers (not on every Ajax call).
Using the WordPress Plugin?
To add the snippet right in your WordPress’ footer, add the following code to your theme’s functions.php file:
/* Append ratings render-er after ajax call. ------------------------------------------*/ function rw_render_ratings_after_ajax() { ?> <script type="text/javascript"> (function($){ $(document).ajaxSuccess(function() { setTimeout(function(){ if ("undefined" !== typeof(RW)) RW.render(null, true); }, 500); }); })(jQuery); </script> <?php } add_action('wp_footer', 'rw_render_ratings_after_ajax');
-
Does RatingWidget WordPress plugin works with multisite network?
Yes it is! The RatingWidget WordPress extension plays well with WordPress multisite networks. Just note, that if your network is using multiple domains and you would like to upgrade to one of the paid plans, you’ll have to use a separate license for every domain.
-
How to change my account’s email address?
Changing the email address is simple:
- Open RatingWidget’s management dashboard:
http://app.rating-widget.com/ - Sign-in with your old email and password
- Click the Account Settings
- Update your email address and save by clicking Update Account Details
- You will receive a verification message to your new email address. If you can’t see it, please check your spam box
- Open RatingWidget’s management dashboard:
-
How to hide the content recommendations shown in the after vote report popup?
-
-
by RatingWidget
To disable recommendations shown in the report popup, simply add this code snippet
"hideRecommendations": true,
to your existing integration code options. Your new integration code should be something like:
... options: { "hideRecommendations": true, "size": "medium", "style": "oxygen", } ...
WordPress Plugin User?
- Go to Dashboard > RatingWidget
- Select the rating type tab you’d like to modify
- Scroll to the bottom of the setting page until you get to the Power User Settings
- Check the Activate / in-activate checkbox to activate the Power User Settings.
- By default, the
hideRecommendations
option will already be there as one of the examples:options.hideRecommendations = true;
- Delete all other preset functions if not needed or modify when necessary. Then click Save Changes and you’re all set!