Forgive me in advance if this is PEBCAK...

Despite the fact that this module depends on both Fivestar and VotingAPI, the ideas list does not seem to expose any way to vote on ideas, even to UID1:

No way to vote.

Checked permissions, but only saw one related to the "We're watching this" flag.

Comments

vdsh’s picture

Yeah same here, did you find anything ?

Else, I'll try to have a look into the code and see what I can figure out.

vdsh’s picture

Ok, answering myself here.

This is what I did to display the stars.

1) Go onto your node type (ideas) and add a new "fivestar_rating" field

2) Edit the display to show the rating (also on the teaser display)

3) Go back to your ideas page, everything should be working.

webchick’s picture

Title: No way to vote on ideas? » No way to vote on ideas — missing fivestar rating on idea content type
Priority: Major » Critical

Ah, nice sleuthing, vdsh! :) Clarifying title, and actually bumping to critical since this seems quite important. ;)

vdsh’s picture

Also, if you want to change the ideation view filter or something like this (for example, I wanted to allow the user to sort by "top rated" idea), you have to :
1) add the line "files[] = ideation.views.inc" in ideation.info

2) uncomment the ideation_views_data() function in ideation.views.inc

3) clear the cache (you can never do that enough times)

4) go to the view and add a relationship with the votes (You have two choices, pick the one that allows you to get the average rating of an idea)

5) and now a new filter is available to filter by top rated ideas

PS Not sure what "ideation_views_data()" does exactly, but it doesn't work without it enabled

vdsh’s picture

x