Hello,

is there a possibility to get access to the summary rating for each node per views?

I want to have several nodes of a content type get reviewed by users, and than display the node in a ranking for the best reviewed node.

Example:
node1 - summary rating: 30%
node2 - summary rating: 10%
node3 - summary rating: 50%
node4 - summary rating: 80%

Output of views:
node4 - summary rating: 80%
node3 - summary rating: 50%
node1 - summary rating: 30%
node2 - summary rating: 10%

To do that I need some possibilities in views like a field "summary rating" and a possibility for sort by "summary rating"

Have I missed something? is this possible?

All the best from berlin!

Comments

danielhonrade’s picture

nodereview is using voting api, this can easily be done using views, create views relationships - voting api, this will make voting appear on views fields, you'll get all the data which nodereview used.

blecheimer’s picture

can you give me an example , how it works? I need the average rating of the multiaxis voting per user in a view, I also need a "High Score" of all users rating the node.... I can't get it work.

danielhonrade’s picture

Hi, take a look at this, http://www.lullabot.com/node/425/play, this is not exactly what you need though, but you'll get how voting api and views works

yaworsk’s picture

have you also taken a look at: http://drupal.org/node/457886

Doesn't speak to exactly what you need but the basic principles are there to use views and accomplish everything.

blecheimer’s picture

Status: Active » Closed (works as designed)

I have switched to the rate module, but there I had the same problem, so it is no problem of the nodereview module, I think. I now make it with rate+votingapi+rules+votingrules. There I can fill a cck-field with the avaerage of all multiaxis and uservotes... I think this would work with the NodeReview also.

All the best and thank you!