Ive been trying to make an admin bar that contains information about the site on all pages that I want only viewable to Super Admins. For some reason I can’t get it to display.
I have tried
{if group_id == '1'}
<header id="adminHeader">Hello Super Admin person</header>
{/if}{if member_group == '1'}
<header id="adminHeader">Hello Super Admin person</header>
{/if}I even tried the generic
{if logged_in}with no luck. HELP!