You are totally right, thanks for clarifying! Best regards.
Thanks for the feedback! It doesn’t seem to work for me though (IP is still logged).
I created a plugin with the following function:
function flamingo_exclude_ip() {
add_filter(‘flamingo_add_inbound’, function($args){
unset($args[‘meta’][‘remote_ip’]);
});
}
…and activated that plugin. Is this a wrong approach?