• Resolved v4falkner

    (@v4falkner)


    Hi,
    I guess, in my Country it’s not allowed to save the visitors IPs.
    Is there any option or workarround to anonymize or to prevent saving the IPs?

    • This topic was modified 6 years, 5 months ago by v4falkner.
    • This topic was modified 6 years, 5 months ago by v4falkner.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author John Godley

    (@johnny5)

    The only way is to use the WordPress filter redirection_request_ip and return whatever IP you want to use. This can be added to a custom plugin or somewhere on your site:

    add_filter( 'redirection_request_ip', function( $ip ) {
      return '';
    } );
    Thread Starter v4falkner

    (@v4falkner)

    Thanks a lot! Gonna try this 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘IP Anonymization’ is closed to new replies.