Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Registration notification email not sent & captchas — BP 1.2 beta / WP 2.9.1


r-a-y
Keymaster

@r-a-y

Re #1:

Sorry I forget that you need to hook the filter to an action.

Try this:

function snark_reenable_welcome_email() {
remove_filter( 'wpmu_welcome_user_notification', 'bp_core_disable_welcome_email' );
}
add_action('init', 'snark_reenable_welcome_email');

The file is /wp-content/plugins/bp-custom.php

Skip to toolbar