We are looking into this. Will update back.
Hello,
Did you check it ? Would you like me to explain how to replicate the problem ?
Thanks,
Best Regards.
Yes, we checked and there is issue. But we would still like to know your specific settings so that we can check accordingly.
Hello,
Thanks for prompt response.
I am pasting the screenshot of my settings :
1

2

3

4

5

6

7

We are checking with super cache support team https://ww.wp.xz.cn/support/topic/caching-issue-with-wti-like-post-plugin/ If you need to add some more information there, please do so.
The suggested approach by supercache team needs a complete change in the way this plugin has been developed. We do not have any such immediate plans. Please look for any other plugin which will better match your requirement. Thanks.
Hello,
I can understand. Do you suggest any alternative, the best one I found about is WPUlike.
https://ww.wp.xz.cn/plugins/wp-ulike/
And I think that it uses ajax to do what wp-super-cache developer suggested.
Also, can you help in migrating the database from your plugin to other plugins like WPUlike ?
Thanks,
Best Regards.
Not sure how that plugin manages the data. Will check and share instructions if feasible.
Hello,
Thanks for the active participation in solving the cache related problem.
I will be waiting for your instructions on the migration of the data from your plugin to other plugin.
Thanks again,
Best Regards.
Please use the following query to get the vote counts for each post.
All counts:
SELECT post_id, SUM(value) AS like_count FROMwp_wti_like_postGROUP BY post_id ORDER BY like_count DESC
Only positive counts:
SELECT post_id, SUM(value) AS like_count FROMwp_wti_like_postGROUP BY post_id HAVING like_count > 0 ORDER BY like_count DESC
You need to run the above query in phpmyadmin or any other client that you have. Then export the same and share with the other plugin support team. They will guide you to import the same in your site as per their plugin.