Change WordPress user roles and capabilities Forums How to or FAQ Admin is unable to add other admins

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #5887
    tracedef
    Participant

    We’re running multisite and have a sub site that has an admin level user I’ve added. They do not have Administrator as an option when adding users. Any idea if this is related to a user role setting or how to enable Admins to add other admins?

    #5897
    Vladimir
    Keymaster

    URE protects by default ‘administrator’ role and users with ‘administrator’ role from each other. You may switch off this protection using filter:

    
    add_filter('ure_supress_administrators_protection', 'ure_supress_administrators_protection', 10);
    function ure_supress_administrators_protection() {
    
      return true;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.