Answer the question
In order to leave comments, you need to log in
How to hide superuser in Drupal 7 user list?
Good afternoon, colleagues. How can I hide the superuser in the admin panel?
Answer the question
In order to leave comments, you need to log in
function hook_form_user_admin_account_alter(&$form) {
if (isset($form['accounts']['#options'][1])) {
unset($form['accounts']['#options'][1]);
}
}
Перекрыть показ пользователей через Views (admin/people), и в фильтрах убрать показ суперпользователя.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question