Log in

View Full Version : New item in navbar


djohn
03-30-2004, 03:16 PM
I want to add 2 new items in the navbar. I can do it myself, but i need to make the first one only visible for registred users, and the second one only to me (user with id 1). How can do that?

Zachery
03-30-2004, 03:46 PM
for registered users

<if condition="$bbuserinfo[userid] != 0"> registered only </if>
<if condition="$bbuserinfo[userid] == 1"> only you </if>

assassingod
03-30-2004, 03:48 PM
Use these conditionals:

<if condition="$bbuserinfo['userid'] == 1">
stuff that only you want to see
</if>

then for only registered users:

<if condition="$show['member']">
stuff for registered peeps
</if>

that should do it

assassingod
03-30-2004, 03:48 PM
damn you beat me too it *Serves me right for going downstairs*

djohn
03-31-2004, 01:14 PM
Thanks a lot, both of you!