If you want to continue tracking clicks, but don’t want to track the IP address you can add the following code snippet by using a plugin like WP Code or, if you are using a child theme, by adding it to the functions.php file.
Anmerkung: Removing IP tracking will reduce the ability of PrettyLinks to track unique visitors. So the click tracking will be a basic total count of clicks.
Code-Schnipsel:
add_filter('pl_get_current_client_ip', function() { return ''; });
Vorhandene IP-Daten entfernen:
Wenn Sie auch vorhandene IP-Adressdaten entfernen mรผssen, haben Sie zwei Mรถglichkeiten. Die erste ist Trimmen Sie Ihre Klickdaten um alle Klickdaten zu entfernen.
Wenn Sie jedoch Ihre bestehenden Tracking-Daten beibehalten und nur die IP-Adressen entfernen mรถchten, kรถnnen Sie die folgende SQL-Abfrage in Ihrer Datenbank ausfรผhren. Wir empfehlen Erstellen einer Sicherungskopie vor der Ausfรผhrung alle SQL-Abfragen in Ihrer Datenbank.
update wp_prli_clicks set ip = ''