Does this plugin work on 4.3.x? Has anyone tried this and found any conflict with the latest WP version or other plugins?
]]>I get this warning when using the script here: https://bevarlaegevagten.dk/anmeld/
Warning: Illegal string offset 'id' in wp-content/plugins/dd-rating/inc/shortcode.php on line 13
It’s may be outdated this script, but I hope you can help!
]]>First of all thank you very much for such a nice rating plugin. I had searched and tried lot of rating plugin and i found this plugin best. But this plugin lacked in only one thing and that is widget for the plugin.
I kindly request you to include widget in this plugin or kindly advise how to implement widget in this plugin. I have no idea of coding.
I was looking for two widget :
1. Top rating result widget(or shortcode) :- This widget would show the top ten rating result.(Refer link for example)
2. Recent review widget(or shortcode) :- This widget is just like recent comment widget, but difference is that it should show the average rating of user along with the comment excerpts.(Refer link for example)
Thank You
]]>I have 1700 posts and 1500 comments with each comment having 6 multiple rating criteria that I need to transfer to the new site.
I can see there are various id like these
{“ratelist”:[{“id”:”1391888290″,”title”:”Reliability”,”rank”:”5″},{“id”:”1391948828579″,”title”:”Affordability”,”rank”:”5″},{“id”:”1391948845513″,”title”:”Flexibility”,”rank”:”5″},{“id”:”1391948855526″,”title”:”Accessibility”,”rank”:”5″},{“id”:”1391948861617″,”title”:”Workmanship”,”rank”:”5″},{“id”:”1391948869233″,”title”:”Satisfaction”,”rank”:”5″}]}
Will these be unique to each post? Even though I need all ratings to be the same?
Is there a way of doing this by bulk?
I know you said you were going to look into implementing this in a future release however time is against me.
Thanks in advance
For some reason google doesnt seems to incliude rich snippet ratings…
If you see the link here:
https://www.google.com/webmasters/tools/richsnippets?q=http%3A%2F%2Fbevarlaegevagten.dk%2F
It seems to work pretty well.
But when you search on google the ratings is not included in the search results…
https://www.google.dk/search?q=anmeld+1813
Can you see what is wrong? Im not able to spot the reason…
]]>Hi there,
Can the plugin have a setting where in the Admin section you can set standard rating settings that apply to all posts, or all posts in that category instead of having to set ratings individually on each post
]]>The plugin only supports ‘post’ and ‘page’ post types. The plugin can be added to another post type by adding code like that below to you theme’s functions.php file.
add_action('add_meta_boxes', 'lsl_add_custom_box_dd_ratings');
function lsl_add_custom_box_dd_ratings()
{
// Check the plugin is activated
if (!function_exists('dd_rating_custom_box')) return;
$custom_post_slug = 'download';
add_meta_box(
'ratings',
__('Ratings', 'ratings'),
'dd_rating_custom_box',
$custom_post_slug,
'advanced',
'high'
);
}
The value assigned to the variable $custom_post_slug is the slug of the custom post. If the custom post type is created by the vendor of another plugin the slug will be the name immediately following the blog site address in the browser address bar. In the example the slug is ‘download’ which is the name of custom posts of Easy Digital Downloads.
The function does not need to be ‘lsl_add_custom_box_dd_ratings’. It can be any unique name you choose. However any alternative name you choose must also appear in the second parameter passed to the ‘add_action()’ function.
]]>The meta box allows a post editor to uncheck the ‘Allow ratings’ box but it does not work. The reason is that the save function only actions the positive event of the box being checked.
Unchecked boxes are not sent by the submission process so their absence must be detected. However the meta box save code does not do this.
]]>I see the option the post editor and am able to set/save title, description and a item. However the rating information does not appear in the comment area (or anywhere else).
A big drawback to using this plugin is that it overwrites all the columns in the admin posts list. Instead of adding additional column it unilaterally add only its column so, for example, the columns of the SEO plugin by Joost do not appear.
]]>Is is possible to show all the multi-rating details in a short code, and/or within the comments? Right now, all my readers can see in the comments is the average rating. I want them to have a run down on how people are voting for every rating type. Why have the option if nobody can see the breakdown?
]]>First of all let me start by saying what a great plugin. This has great potential and it is fantastic to see you continuing to develop it. I do have an issue within the comments form using Thesis 2.1 as the ratings are not displaying.
Also I was wondering if the plugin could be modified to meet the following
1) Create a template with a range of six criteria that are then applied to all posts, pages or users to be rated rather than creating the same 6 criteria 1700 times as I am creating a directory where service providers are rated.
2) Search for posts and rank them based upon rating results
3) Add tooltips or descriptions of each rating criteria
4) Create a Thesis box that can be added to a template
Many thanks and please keep up the great work
]]>For some reason you have the text: hoi in
add_to_comment_form.php
$comments = get_comments($post->ID);
if ($comments->comment_parent==0) {
echo 'hoi';
}
Else nice job with version 1.5 ??
]]>Hi,
I’d like to know if it’s possible to set 5 star in average comment instead of ten.
Thanks for this great plugin.
GM.
]]>A little change make this plugin even more powerful.
I have a post where people can rate a service. (I would like it to be page instead – but it seems to be avaible in a comming release…)
I would like to place the rating result on a page or in wigdet.
Its pretty simple:
[averageRating] use the default post_id if you use: [averageRating id=1000] it take the data from the post with the id = 1000
OPEN
shortcode.php
FIND
function dd_averageShortcode
REPLACE WITH
function dd_averageShortcode($atts) //Post-ID atts
FIND
function dd_averageShortcode($atts) //Post-ID atts
{
AFTER ADD
//Snippet to let you specify the post-id in the shortcode like [averageRating id=82]
extract(shortcode_atts(array(
"id" => $post->ID
), $atts));
FIND
$custom = get_post_custom($post->ID);
REPLACE WITH
$custom = get_post_custom($id); //use $id
FIND
$postaverage = get_post_dd_average($post->ID);
REPLACE WITH
$postaverage = get_post_dd_average($id); //use $id
Hope you’ll enjoy…
]]>Great plugin! Great work!
I have some question:
– When a user can respond to a comment you can not measure, but the text s poster and not the stars to rate.
– In the administration of WordPress, party all items, if you did a quick modification of an article, recording the assessment is lost.
Thank’s
]]>Will it be possible to rate a page?
It doesnt seems like Im able to do so now!?
Thanks again for a great plugin
]]>When Rating is not allowed you still see the div box: makeRateHolder
To fix it:
OPEN inc/add_to_comment_form.php
FIND
$ratingTitle = $custom['ratingTitle'][0];
$ratingDesc = $custom['rateDesc'][0];
ADD AFTER
$rating_status = $custom["rating_status"][0];
FIND
echo '<div class = "makeRateHolder">';
echo '<h3>'.$ratingTitle.'</h3>';
echo '<p>'.$ratingDesc.'</p>';
REPLACE WITH
if($rating_status == 'checked'){
echo '<div class = "makeRateHolder">';
echo '<h3>'.$ratingTitle.'</h3>';
echo '<p>'.$ratingDesc.'</p>';
}
FIND
echo '<textarea id="JsonRate" class="JsonRate" name="JsonRateResult" placeholder="JsonRate" style="display:none;"></textarea>';
echo '</div>';
REPLACE WITH
if($rating_status == 'checked'){
echo '<textarea id="JsonRate" class="JsonRate" name="JsonRateResult" placeholder="JsonRate" style="display:none;"></textarea>';
echo '</div>';
}
]]>
A minor bug might be that the text area is visible?
To hide it
OPEN inc/add_to_comment_form.php
FIND
echo '<textarea id="JsonRate" class="JsonRate" name="JsonRateResult" placeholder="JsonRate"></textarea>';
REPLACE WITH
echo '<textarea id="JsonRate" class="JsonRate" name="JsonRateResult" placeholder="JsonRate" style="display:none;"></textarea>';
]]>
One reason that the script wouldnt work first time was Jetpack
This plugin doesnt work when jetpack is installed.
It is a very popular plugin!
]]>I need to add a rating and comment option to my project.
I would like to add make a review page where users can rate a service and add comment.
I have some questions:
1. does the average rating output support Rich Snippet support? This way google index the review page with the rating result. Eg;
2. I would like the rating to be on one page. But I would like to place the average result (with rich snippet support) on my front page using a shortcode. Does this support it?
Else it seems to be a fit my needs.
I would like demo.
]]>