I checked the box next to "Delete all votes" saved the node and votes were not deleted. Should/can votes be deleted in another way?

Comments

sillygwailo’s picture

I looked at the code and there's only code that makes the checkboxes appear, not code that does the actual deleting.

One could conceivably delete votes through the database, but you should backup your database.

  1. find the number for the node ID. I'll use 4254 as an example.
  2. in your database, run the following query: DELETE FROM pollfield_votes WHERE nid = 4254;

Otherwise, code is needed to implement this feature.