• Resolved benni109

    (@benni109)


    Hi there, is it possible to deactivate the ip-adresse submission (SUBMIT_IP)?
    We dont deed that and according to DSGVO this would be a problem.

    Thank you and best regards
    Benni

    • This topic was modified 2 years, 3 months ago by benni109.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Bruce

    (@ninjateamwp)

    Hi @benni109 ,

    Thanks for coming today!

    May I know if you mean, you would like to hide the IP address from the data to be exported? Just like using this eye toggle:

    https://ps.w.org/cf7-database/assets/screenshot-3.jpg?rev=1614091

    Kind regards,
    -Bruce-

    Thread Starter benni109

    (@benni109)

    Hi there okay i have seen the eye toggle, but does it only hide the information of IP adress or does it deactivate this function completly?

    For us it is important that then the ip adress will not be written in the database and therefore sended to provider. because ip adress is personal data in dsgvo.

    Thank you very much and best regards
    Benni

    Hi @benni109,

    Thanks for your patience.
    We can make it not save submit IP in your database or you can do it by yourself with a filter hook if you know the code.

    Please share with us your information via https://ninjateam.org/support/ if we can do it for you.

    Cheers,
    Rose

    Thread Starter benni109

    (@benni109)

    Hi, please send me the hook therefore so we can try it.
    Thank you.

    Hi @benni109,

    We really appreciate your patience.
    Please try to use this code:

    `add_filter( ‘cf7d_no_save_fields’, ‘cf7d_no_save_fields_hook’, 10, 1 );
    if ( ! function_exists( ‘cf7d_no_save_fields_hook’ ) ) {
    function cf7d_no_save_fields_hook( $cf7d_no_save_fields ) {
    array_push( $cf7d_no_save_fields, ‘submit_ip’ );
    return $cf7d_no_save_fields;
    }
    }

    Please let us know if it works for you.

    Cheers,
    Rose

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