How do you delete votes from a poll?

You would need to edit the DB directly.

The three tables are: xf_poll, xf_poll_response, xf_poll_vote.

You also need to rebuild the cache afterwards.
 
I'd like to have a poll only show results as a percent. I'd like to not show the actual number of votes. How can I accomplish this.

Edit this template:

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
/* HIDE VOTE COUNTS IN POLL RESULTS */
.pollResults .count
{
	display: none;
}
 
Top Bottom