XF 2.1 Hide user banners from unregistered/anonymous users

NealC

Well-known member
I want to hide Staff, Moderator, Administrator banners from anonymous users, only registered or higher can see this. This way when someone not registered on the site they cannot determine who our staff are. How can I do this?
 
Without having to go through all the templates and adding conditionals.... you could use CSS in extra.less

Will hide all banners
Code:
[data-logged-in="false"] .userBanner {
    display: none !important;
}

Or just the staff:
Code:
[data-logged-in="false"] .userBanner.userBanner--staff {
    display: none !important;
}
 
Top Bottom