Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

Support: Requests & Feedback

Feature requests; criticism.

When inactive users try to log in, I want show them an alert message. (3 posts)

Started 1 year, 2 months ago by: Ounziw

  • Profile picture of Ounziw Fumito Mizuno said 1 year, 2 months ago:

    Users registered, but not activated (user_status = 2) cannot log in. That’s OK.
    But, when inactive users fail to log in, no alert messages are displayed.

    function bp_core_signup_disable_inactive ( …

    if ( 2 == $user_status )
    bp_core_redirect( $bp->root_domain );
    else
    return $auth_obj;

    When inactive users try to log in, they simply send back to home.
    It would be nicer, if inactive users try to log in, show them a message like ‘Please click the link sent to you via E-mail. After clicking, you can log in.’

  • Profile picture of Paul Gibbs Paul Gibbs said 1 year, 2 months ago:

    This has been improved in the development version of BuddyPress already

  • Profile picture of Ounziw Fumito Mizuno said 1 year, 2 months ago:

    Hi, Paul

    Thank you.
    I’m happy to hear that.