Currently you need to run a query from phpMyAdmin to reset the karma totals on your forum.
To do so, login to your phpMyAdmin and select your forum database from the left panel and Query from the right panel. In the SQL-query box enter the following query:
The following applies only to version 1.1.x |
UPDATE smf_members SET karmaGood = 0, karmaBad = 0;
The following applies only to version 2.0.x |
UPDATE smf_members SET karma_good = 0, karma_bad = 0;
Replace the prefix 'smf_' with your custom prefix if not using the default.