Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Great new version!! But New user email password “still” does not work : (


John James Jacoby
Keymaster

@johnjamesjacoby

https://trac.buddypress.org/browser/trunk/bp-core/bp-core-activation.php#L79

There are two ways for this email to still get sent:

1.) Your active theme does not have either /register.php or /registration/register.php in it.

2.) You are an admin that has just added a user to your site.

If either of those things are true, the email will get sent out.


If you are hard pressed to make this issue go away, try adding this to your functions.php or bp-custom.php.

/* Unhook BuddyPress wpmu email blocker */
remove_filter( 'wpmu_welcome_user_notification', 'bp_core_disable_welcome_email' );

function block_wpmu_email() {
if ( is_admin() && $_GET['e'] )
return true;

return false;
}
/* Rehook custom function */
add_filter( 'wpmu_welcome_user_notification', 'block_wpmu_email' );

The above routine doesn’t help us test this issue any, but it does stop the email from going through unless you add a user yourself.

Skip to toolbar