Log in

View Full Version : Album link?


Mellymonster
10-31-2008, 10:27 PM
How do you add a link to all albums in the nav bar? I been searching and can't seem to find one... :confused:

JWL
11-03-2008, 02:29 PM
How do you add a link to all albums in the nav bar? I been searching and can't seem to find one... :confused:

It is pretty simple really

Edit your navbar in your templates for each style you have

Locate an existing link (example) search the navbar template for FAQ

this should produce something like
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">FAQ</a></td>

you can copy that entire string and past it any place between the
<!-- nav buttons bar -->
and
<!-- / nav buttons bar -->

So for instance you may want to move some items around to give a better flow such as
<td class="vbmenu_control"><a href="index.php$session[sessionurl_q]" accesskey="5">Home</a></td>
<td class="vbmenu_control"><a href="album.php$session[sessionurl_q]" accesskey="5">Photos</a></td>

the key is this for your Albums home page
<td class="vbmenu_control"><a href="album.php$session[sessionurl_q]" accesskey="5">Photos</a></td>

Change say Photos to Forums or Home
Change the xxx.php to the correct file such as album. or index.

Hope it helps

DarwinsMessenge
01-06-2009, 05:01 AM
Thanks JWL, it sure helped me.

When I do this, though, I get the current user's album only. Can this point to the top level, all albums?

OR

Since my forum is VERY new and there are no users or albums, is this the default?

TIA

JWL
01-06-2009, 02:08 PM
Hi Darwin

Here is the mod I used for that Link All Albums (https://vborg.vbsupport.ru/showthread.php?t=172215&highlight=All+Albums)

DarwinsMessenge
01-06-2009, 08:36 PM
Thanks again, installed that and it's great.