According to your current setup, WP Statistics is not configured to record any personal data. This means that technically, you do not need to mention WP Statistics in your privacy policy. However, to foster an environment of utmost transparency with your users, we still encourage mentioning the use of WP Statistics. This helps inform users about the analytics tools employed by your site, reinforcing trust through transparency.
', 'wp-statistics') ], 'warning' => [ 'status' => $status, 'title' => $title, 'icon' => $icon, 'summary' => esc_html__('Mentioning Required', 'wp-statistics'), 'notes' => sprintf(__('Your current WP Statistics setup records data that can be considered personal. You should add WP Statistics to your privacy policy and explain what data is collected, why it is collected, and how it is stored. A helper text that matches your configuration is available in WP Admin > Settings > Privacy > Privacy Guide and can be copied into your policy. For tips on reducing data collection, see the Privacy Audit section of this page.', 'wp-statistics'), esc_url($privacyPolicyUrl)) ], ]; } public static function getStatus() { $requirements = [ RecordUserPageVisits::isOptionPassed(), HashIpAddress::isOptionPassed(), AnonymizeIpAddress::isOptionPassed(), StoreUserAgentString::isOptionPassed() ]; if (in_array(false, $requirements)) { return 'warning'; } return 'success'; } }