Hi,

I set up a fivestar to create a simple review system.

There is a nice feature to allow user to vote on comment and then, display the average in the node, all is ok.

The think I don't find is how to display the attributed note in the comment. ATM, I can see the average of all note in my node, but I can't see all notes individualy attached to comments.

Comments

AgentD’s picture

I've had the same issue (no stars in comments) for a couple months with no fix. Just updated from beta 3 to beta 5 votingapi and that didn't help.

Are you using clean URLs? I've heard that can be an issue.

garg_art’s picture

Ability to rate the Comment itself in contrast to the content will be very useful. I fathom some smart person will have a patch soon. Right now one can submit comments to ones rating of the main content. That is a useful feature but has different implication.

AgentD’s picture

You should check out the module that turns comments into nodes, then you can do that. This issue is about the stars that the user (commenter) voted not appearing in their comment.

j0k3z’s picture

I agree, this is a must have feature.

Im happy that users can now rate from within comments, this allows a much better review system for my website. The comments act as a review and go along with the rating they assigned. So other users need to see how many stars they rated as well as read their review (comment)

Is this feature coming soon?

drupaloSa’s picture

This feauture is already there, see this comment:

http://drupal.org/node/261145#comment-861440

AgentD’s picture

Right, but there's a bug that is making the stars not appear for some people. I'm seeing on 2 sites (one completely default).

quicksketch’s picture

It's possible there's something going awry in the theme layer. You might try printing out the following in your comment.tpl.php:

print $comment->fivestar_view;
AgentD’s picture

The latest release fixed the bug.

Thanks.

quicksketch’s picture

Status: Active » Fixed

W00t, thanks AgentD.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

halloffame’s picture

It's possible there's something going awry in the theme layer. You might try printing out the following in your comment.tpl.php:

<?php
print $comment->fivestar_view;
?>

How do you print the value itself in words and not in stars? Thanks.