Log in

View Full Version : What's the proper IF code to not show the following...


Frosti
07-26-2011, 11:48 AM
A plugin installed a NAVbar link that shows up in the login page and I would just as soon wrap that in an "IF" code (or something) so it only shows once the user is logged in...

Or if it's not an IF code and something else, can someone help with that?...

Again, I just need to edit the plugin's NAV template to not show to NON logged in users....

THNX ahead of time....

This place is great BTW and I am learning a lot!!

kh99
07-26-2011, 11:57 AM
A guest has a userid of 0, so you should be able to do something like:

<if condition="$bbuserinfo['userid'] != 0">
link code here
</if>

Konstantinos
07-27-2011, 12:07 PM
<if condition="$show['member']">
Code
</if>

Frosti
07-28-2011, 03:25 AM
THNX guys... that's awesome!!! will come in handy for sure in other situations also I'm sure