We’ve released a plugin to help with bbPress GDPR compliance:
bbPress GDPR
We have released a plugin to help with bbPress GDPR compliance: https://wordpress.org/plugins/bbp-gdpr/
Hi @dragonita, we’ve released a plugin to help with bbPress GDPR compliance:
bbPress GDPR
The solution lies in : wp-content/plugins/bbpress/includes/common/functions.php
Currently it is this : $do_not_reply = '<noreply@' . ltrim( get_home_url(), '^(http|https)://' ) . '>';
Needs to be: $do_not_reply = '<noreply@' . str_replace("www.","",ltrim( get_home_url(), '^(http|https)://' )) . '>';
I got this issue on my server w the latest bbPress update. I believe the most recent ticket will fix it in the next update, but this is what we did internally and it’s working.