How Can We Help?
< Back
You are here:
Print

Hide users in the user’s list for other users

This CSS will allow logged in user as an admin to see all users and admins in the users’ list.

However, users will only see admins in the user’s list.

body:not(.moderator) #list-frame #list > div:not(.admin) {
  display: none;
}

In this example, the guest “user” is logged in. However, they can only see the admin’s name in the user’s list.

For admins, they can still see the user’s list normally.

Categories