Quote:
Originally Posted by Smoothie
This is what I have in the header template:
PHP Code:
$forumjumpmenu <if condition="$vboptions[navbar_forumjump_enable] && $show[popups]"> | </if>
|
It looks like you've got the menu only showing to logged in users.. so, try this:
PHP Code:
$forumjumpmenu <if condition="$vboptions[navbar_forumjump_enable] && $show[popups] && ($vboptions[navbar_forumjump_showusersonly] && $bbuserinfo[userid])"> | </if>
That should do the trick.