Quote:
Originally Posted by 10sion
Isn't there a way to use that conditional thing? Like the "if admin, then show link"?
I forgot what the exact code was, but thanks.
|
yes you can do that in the template
use the <if condition="$show['admincplink']"> in the tempate navbar
find
PHP Code:
<tr><td class="vbmenu_option"><a href="vbimghost.php?do=userlist">View all users images</a></td></tr>
and change it to
PHP Code:
<if condition="$show['admincplink']">
<tr><td class="vbmenu_option"><a href="vbimghost.php?do=userlist">View all users images</a></td></tr></if>