For anyone who is having problems getting links to appear with permissions in the navbar... there is a "work-a-round" you can do. It will enable the links for EVERYBODY (they will be stopped with a permission error if they can't use the links, so security is still intact). I believe this problem is an error with VB itself not handling permissions in plugins on some forums. Go into the plugin: "media NAVTAB":
Find the line:
Code:
$perms = media_permissions();
REPLACE with:
Code:
$perms['submit'] = true;
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;