Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
611 views
in Q2A Core by
Block x user from voting and remove his / her all votes

1 Answer

+2 votes
by
There is no way to stop specific users from voting, but you can set a minimum points needed for voting. It can be below what users normally start with, then you can penalize that user by giving them negative bonus points.

There is also no way to remove votes on the site, except removing direct in the database. Find the userid then run: SELECT * FROM qa_uservotes WHERE userid=#

where # is the userid. Then click the button in admin>stats to recount posts/votes.
...