Yes, you are right, I am using wordpress, buddypress implementation. I can see a code that says send email to admin? Is this for future development? Sorry if I am wrong?
Is there any way I use your plugin and simultaneously send email to admin when someone registers…using any other code ..until your next release..
Same Problem here, Plugin updated version..Users get emails that they are approved, but admin does not receive the mails.Please help.
Note: I have used the below code to disable activation email to users..
// DISABLE ACTIVATION
function disable_validation( $user_id ) {
global $wpdb;
$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”,
$user_id ) );
}
add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
function fix_signup_form_validation_text() {
return false;
}
add_filter( ‘bp_registration_needs_activation’, ‘fix_signup_form_validation_text’ );
add_filter( ‘bp_core_signup_send_activation_key’, create_function(”,’return false;’) );