Hi @shadiji,
Currently the plugin doesn’t store any data (like IP addresses for example) that could help you identify “duplicate” views and so you’d need to code your own solution to prevent visitors from “duplicating” page views.
WPP provides an action hook called wpp_pre_update_views that you could use to check if someone has viewed a specific post/page already. You’d need to write the actual logic to prevent WPP from tracking a duplicate view of course as the mentioned action hook won’t do anything on its own.
If you’re not familiar with web development in general (or if you don’t have time to implement this kind of feature on your own) you may need to reach out to / hire a developer to have them get this done for you.
-
This reply was modified 2 years, 10 months ago by
Hector Cabrera. Reason: Added link to WP's Action Hook documentation page