Someone is abusing the like/dislike system and is giving hundreds of dislikes only to annoy users. I know that there's a tool to remove the dislike button, but I would like to know how to change the number/delete dislikes from a single comment. Thank you very much.
Execute these SQL commands in Hosting Service cPanel > phpMyAdmin > Your Website Database > SQL tab:
DELETE FROM `wp_wc_users_voted`
WHERE `comment_id` IN (1,2,3) /* use comment ID intead of the 1,2,3 or comma-separate the comment IDs */
AND `vote_type` = '-1' /* dislike = -1 */
The wp_ is just a prefix. In your case, it can differ.
Please always backup the database, before doing any actions.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.