This is possibly a user error on my behalf, or completely intended functionality that I need to find a way around, and i'm sorry if that's the case.

I added Number Up Down Rate to an existing content type with a compact display. That content type just happens to be an advanced poll. Now if I up or down vote the rating, it affects the content's total number of votes. I would expect them to be separate but because Rate uses the voting API I guess they're being stored in the same place.

Any ideas would be appreciated.

Comments

rsavage created an issue.

rsavage’s picture

So, as for a quick fix, in the advpoll module, advpoll_voteapi.inc, at line 30, i checked the tag and if it matched the machine name of the up down vote i unset it. seems to work for now if anyone else has this rare issue..

foreach($results as $i => $result){
	  if($result['tag'] == 'pw_updown'){
		  unset($results[$i]);	  
		}
  }