I'm using the Drupal 6 Views module to request for top nodes rated using the fivestar module. However, I can't seem to find out how I can create a view to request for the top voted node for each month and display them on a list.
What I'd like as a result is a list like this:
- January 2011: Most voted node title an link to that node
- December 2010: Most voted node title an link to that node
- November 2010: Most voted node title an link to that node
- ...
I'm not even sure this is possible using Views?
Set up your view with the voting relationship. (more info here http://www.lullabot.com/videos/building-views-fivestar-and-votingapi)
Make sure you sort by vote result descending. According to your example above, just add the Node Title field and checkmark "link this field to its node".
Secondly, you need to group your listing based on a date value.
That should do the trick.