//*****************************************************
//*****************************************************
//********** NEW USER REGISTRATION COMPLETED **********
//*****************************************************
//*****************************************************
add_action('bp_core_signup_user', 'myplugin_bp_core_signup_user', 10, 5);
function myplugin_bp_core_signup_user ($user_id, $user_login, $user_password, $user_email, $usermeta)
{
  
  

  
}


//******************************************************
//******************************************************
//********** NEW USER SIGN UP FROM INVITATION **********
//******************************************************
//******************************************************
add_action('user_register', 'myplugin_user_register');
function myplugin_user_register ($UserId)
{
  $NewUser = get_userdata($UserId);
  $Email = $NewUser->user_email;

}
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.

Comments

Your email address will not be published. Required fields are marked *