How to show only admins in the users’ list (userlist)?
If you do not want to show the user in the users’ list, you can use the next CSS to hide users but keep admin visible.
#list-frame #list > div:not(.admin) {
display: none;
}
To know how to edit web CSS, click this link.