• Resolved marshallsam

    (@marshallsam)


    Hi,

    I am trying to remove both roles and other roles from the users.php table. I have managed to remove role using the code below:

    add_action(‘manage_users_columns’,’remove_user_posts_column’);
    function remove_user_posts_column($column_headers) {
    unset($column_headers[‘posts’]);
    unset($column_headers[‘role’]);
    unset($column_headers[‘name’]);
    return $column_headers;
    }

    However I added this line:

    unset($column_headers[‘ure_roles’]);

    to remove other roles without success?

    Could anyone advice me on this please?

    Thanks,

    Sam

    https://wordpress.org/plugins/user-role-editor/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Vladimir Garagulya

    (@shinephp)

    Hi Sam,

    URE adds ‘Other roles’ column with priority 10, so to remove it you need to call remove_user_posts_column() with priority >=10. Otherwise your code is executed before URE’s one.
    Try this:

    add_action('manage_users_columns','remove_user_posts_column', 11);

    Thread Starter marshallsam

    (@marshallsam)

    Hi,

    That worked perfectly.

    Thank you

    Sam

    Post is not related to URE.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Other Role from users.php’ is closed to new replies.