Hi,
My plugin GD bbPress Toolbox Pro has a tool for deleting all IP’s logged when users create topics or replies. And it has Privacy options to disable IP logging.
More info on the plugin homepage:
https://plugins.dev4press.com/gd-bbpress-toolbox/
Regards,
Milan
You can put a default IP for all registered activity:
add_filter( 'bbp_current_author_ip', function() {
return '127.0.0.1';
} );
127.0.0.1 is the default ip in this case.
bbPress includes a tool to delete all the bbPress data
Install and activate the bbPress plugin again
Go to Tools -> Forums -> “Reset Forums” tab
Check the “Are you sure you want to do this?” checkbox
Click “Reset bbPress”
Deactivate and delete the bbPress plugin
This will remove all bbPress data from your WordPress database, including custom post types, topic tag taxonomy and user meta.
AFCAT 2019