MyBB Community Forums

Full Version: Header Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The header links like Calender, Search and Memberlist. I was wondering if you can add links up here but only make them visible when a user has registered.

eg:

Search Member List Calendar: a guest sees

Search Member List Calendar Help: registered user sees. This possible?
Bump!
Not without a plugin of some sort, as the same header template is loaded, it's the welcomeblock that differs for members and guests.
MattR,
Are there any hooks like in vbulletin? With that forum, I could do something like

if user_browsing_membergroup = guest
echo please register
else
thanks for being member
/if


It's like a lite version of php. Is there any way to run queries like that through the template system?