I don't know if anyone else has ran into this issue but if you running a photo gallery or external software with Vb then the navbar links will not work properly within that program. I had to insert "../forum/" in the Plugin Manager "Meet Or Staff Navbar Link". This might be a good feature to set it up for the default plugin Hasann.
Here is what it looks like now in mine:
Code:
if ($vbulletin->options['meetstaff_links_creation'] == 1) {
$template_hook['navbar_buttons_left'] .= '<td class="vbmenu_control"><a href="../forum/staff.php?'.$session['sessionurl'].'do=main">'.$vbphrase['meet_our_staff'].'</a></td>';
}
if ($vbulletin->options['meetstaff_links_creation'] == 2) {
$template_hook['navbar_quick_links_menu_pos1'] .= '<tr><td class="vbmenu_option"><a href="../forum/staff.php?'.$session['sessionurl'].'do=main">'.$vbphrase['meet_our_staff'].'</a></td></tr>';
}