PDA

View Full Version : Hiding the header (logo/banner) from non-members?


trim2
05-10-2016, 03:02 AM
hi everyone :)

first, thanks lots for all the helpful articles and posts and mods, very appreciated :) and second, well hoping for advice here :)

I'm wondering how the header could be hidden from non-members (as in, unregistered, banned members, awaiting moderation, etc)? so that the header would only be visible to logged in members?

sorry if the question is very basic, but not being a coder, it's really difficult to put hints and bits of pieces of info together :)

MarkFL
05-10-2016, 10:46 AM
One way would be to create a plugin hooked at "parse_templates" with the Plugin PHP Code:

if (is_member_of($vbulletin->userinfo, array(1,3,4)))
{
$template_hook['headinclude_css'] .= '<style>.logo-image {display: none;}</style>';
}

trim2
05-10-2016, 11:22 AM
MarkFL, thank you so very much!
Works perfectly, appreciate it a lot :)