Comments rating pro...
 
Share:
Notifications
Clear all

[Solved] Comments rating problem

4 Posts
2 Users
0 Likes
700 Views
Posts: 8
Topic starter
(@arsaces7)
Active Member
Joined: 4 years ago

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 

3 Replies
Asti
Posts: 7060
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

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`));
2 Replies
(@arsaces7)
Joined: 4 years ago

Active Member
Posts: 8

@asti i did it too and cleared all the cache but not solved the problem!

(@arsaces7)
Joined: 4 years ago

Active Member
Posts: 8

update: i removed Vote Data once and problem solved

Share: