NealC Well-known member Nov 18, 2019 #1 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?
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?
Russ Well-known member Nov 18, 2019 #3 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; } Upvote 0 Downvote
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; }