How to Stop Users from Receiving the “Notice of Email Change” Email
Introduction
By default, BuddyBoss sends a “Notice of Email Change” email when a user updates their email address. There’s no built-in setting to disable this. You can prevent this email by adding a small custom code snippet to your active theme. This explains how to stop users from receiving the “Notice of Email Change” email.
Custom Workaround
Before proceeding, make sure you have a complete site backup.
- In your WordPress admin dashboard, go to Appearance > Theme File Editor.
- Under Select theme to edit, choose your active theme (preferably BuddyBoss Child Theme), then click Select.
- From the Theme Files list, click Theme Functions (functions.php).
- Paste the following code just before the closing PHP tag (?>):
add_filter('send_email_change_email', '__return_false');- Click Update File to save your changes.
Troubleshooting and FAQs
Q: The email is still being sent, what should I check?
A: Ensure the code is added to the active theme’s functions.php and clear any caching plugins.
Q: Will this affect other emails?
A: No, this only prevents the “Notice of Email Change” email.
Q: Can I revert this change easily?
A: Yes, remove the code from functions.php and save.
Q: Who can I contact for further assistance?
A: Check the BuddyBoss Support Policy or consult a developer.