Search Results for: GDPR

WP Statistics and GDPR

Many users asked about WP Statistics compliance with GDPR. We have good news! In V12.4.0, the WP Statistics plugin has complied with GDPR. A (Brief) Introduction to GDPR GDPR is a regulation that aims to protect the privacy of EU (European Union) citizens. Among other things, it provides users with more control over the personal […]

GDPR Compliance

The greatest advantage of WP Statistics is, that all the data is saved locally in WordPress. This helps a lot while implementing the new GDPR restrictions because it’s not necessary to create a data processing contract with an external company! Introduction of a popup with “Accept” and “Deny” before collection data and Hash IP addresses […]

WP Statistics Features

WP Statistics has many features: User Online – see how many people are currently viewing your site Visits – see how many hits your site gets each day Visitors – see who’s visiting your site Page Tracking – see which pages are viewed most often Search Engines – see search queries and redirects from popular […]

How to Stop Tracking in WP Statistics with PHP code?

Sometimes you need to enable the Anonymize IP Addresses with PHP code for GDPR. Here is an example to do that. add_action(‘init’, function (){ global $WP_Statistics; $WP_Statistics->update_option( ‘anonymize_ips’, ‘1’ ); });