Viewing 3 replies - 1 through 3 (of 3 total)
  • I just want to say that I’ve got the same problem after updating to WordPress 3.9.1 (from 3.8.something). Guess WordPress changed the way activation works? The original plug-in has the same issue, all new users

    I’ve solved the issue by editing bp-disable-activation.php. Add this to line 8 (BEFORE $wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );):

    $activation_key = get_user_meta($user_id, 'activation_key', true);
    $activate = apply_filters('bp_core_activate_account', bp_core_activate_signup($activation_key));
    Plugin Author Damian

    (@timersys)

    Thanks for the fix, I didn’t have time to check myself.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘User Role BP 2.0’ is closed to new replies.