http://www.bhunited-cs.info
i put in navigation private messages and ucp , but , i don't wan't to see them guests :/
is there any code , like in phpbb:
<!-- IF S_USER_LOGGED_IN --><!-- ENDIF -->
thanks
There's already different welcomeblock templates for members and guests, if you need anything more than that, you'll need a plugin.
:/ i now that :/
is there any free plugin for these ?
you need phpintemplates plugin and you can use those type of conditionals you mentioned in template files
http://mybbhacks.zingaburga.com/showthread.php?tid=260
avilable conditionals
if groups are 3,4,5,6 then it will show text
<if $GLOBALS['mybb']->user['usergroup'] == 4 || $GLOBALS['mybb']->user['usergroup'] == 5 || $GLOBALS['mybb']->user['usergroup'] == 6 then> stuff for usergroup 4,5,6</if>
or
<if in_array($GLOBALS['mybb']->user['usergroup'], array(3,4,6)) then>stuff for usergroup 3,5,6</if>
if not group 1,4,5,6,7 then it will show text
<if $GLOBALS['mybb']->user['usergroup'] != 4 && $GLOBALS['mybb']->user['usergroup'] != 5 && $GLOBALS['mybb']->user['usergroup'] != 6 then> stuff not for usergroup 4,5,6</if>
or
<if !in_array($GLOBALS['mybb']->user['usergroup'], array(1,5,7)) then>stuff not for usergroup 1,5,7</if>