Mar 18, 2022 9:15 am
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.
2 Replies
Mar 18, 2022 10:25 am
Hi @bluerake,
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.