Whould this not be better? I use vbGallery, which re-uses the navbar template. Only the relative path then becomes ./gallery/all_albums.php which is incorrect off course.
To fix this I added the $vbpoptions[bbdir] before all_albums.php in template album_all_navbar_link
Code:
<td class="vbmenu_control"><a href="$vbpoptions[bbdir]/all_albums.php$session[sessionurl_q]">$vbphrase[all_albums]</a></td>
The all_albums.php should not be in / but in /forums if you have vBulletin installed in /forums.
I also use vbPortal which onfortunately cannot use the template hook. So in order to have it work for vbPortal as well, I added the code below to vbp_navbar template:
Code:
<tr><td class="vbmenu_option"><a href="$vbpoptions[bbdir]/all_albums.php">$vbphrase[all_albums]</a></td></tr>
just below this code:
Code:
<tr><td class="vbmenu_option"><a href="$vbpoptions[bbdir]/album.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[pictures_and_albums]</a></td></tr>
</if>
This way it works in vbportal and vbgallery as well. Hope this can be of help