Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
with latest update there is a problem with rating and each user can rate unlimited!
i did the structure in this post
https://wpdiscuz.com/community/f-a-q/limit-comment-likes-unlimited-voting-problem/
and deleted all the cache but not solved the problem
Hi @arsaces7,
You should execute this SQL query in phpMyAdmin database manager SQL Tab. You can install phpMyAdmin plugin, or use your Hosting Service cPanel > phpMyAdmin Database Manager > Your website Database > SQL Tab, it should solve the issue:
CREATE TABLE `t_wpd_wc_users_rated` (`id` INT(11) NOT NULL AUTO_INCREMENT, `post_id` INT(11) NOT NULL DEFAULT 0, `user_id` INT(11) NOT NULL DEFAULT 0, `user_ip` VARCHAR(32) NOT NULL DEFAULT '', `rating` INT(11) NOT NULL, `date` INT(11) UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`));