This should do it
add_filter( 'bbp_current_author_ip', '__return_false' ) ;
if it doesn’t then
add_filter( 'bbp_current_author_ip', 'rew_remove_ip' );
function rew_remove_ip () {
$retval = 0 ;
return $retval ;
}
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use