• Resolved palmtree

    (@toshirobot)


    Hi I’m using wordpress Ver 2.7 just recently upgraded from 2.6 because I had a problem that “Add user” button located below the user-list disappeared – while I logged in the control panel as a administrator (wordpress/wp-admin/users.php).

    I thought upgrading to 2.7 will solve this but it didn’t help…
    If I can check “allow anyone can register user” option, I can see “create new user” in login page (/wordpress/wp-admin) but I want to only create user from control panel user page as a administrator.

    I’m also using “role-manager” plugin. In fact, in this plugin’s Role setting monitor doesn’t also have a privilege “Create Users” but “Delete Users”…

    Can anyone help me to solve this problem?

    Regards
    Toshi

Viewing 1 replies (of 1 total)
  • Thread Starter palmtree

    (@toshirobot)

    I could solve the problem thanks to this guy I was advised to add to code below into the very bottom (just before ?>) of the “wp-settings.php” file. (usually located at wordpress/wp-setting.php)

    if ( isset( $wp_roles ) && ! isset( $wp_roles->roles['administrator']['capabilities']['create_users'] ) ) {
    	$wp_roles->roles['administrator']['capabilities']['create_users'] = true;
    	$role_key = $wpdb->prefix . 'user_roles';
    	update_option( $role_key, $wp_roles->roles );
    }

    And then accessed to user panel. I could see “add new user” option within user tab menu:) After verifying add user option, delete the code from wp-settings.php again.

Viewing 1 replies (of 1 total)
  • The topic ‘Add User not displayed’ is closed to new replies.