Log in

View Full Version : Subscription in Nav Bar


Matt Slick
05-01-2007, 10:37 PM
I'm not a programmer, but I can copy and paste code.

Is there a way to include the paid subscription link in the NAV bar?

I suppose I'd need to copy a code from somewhere into a file that has the nav stuff.

I don't even know which files, but it'd sure be a help if it could be located there.

thanks in advance.

barnold
05-01-2007, 11:41 PM
I'm normally the one asking this questions myself but maybe I can help you on this one.

In your Style Manager open Navigation / Breadcrumb Templates for the skin you are using. Now open the NAVBAR template and look for this:

<!-- nav buttons bar -->

This area contains the links in your navbar. To add something find where you want to add it and add something like this:

<td class="vbmenu_control"><a href="faq.php?$session[sessionurl]" accesskey="5">$vbphrase[faq]</a></td>
<td class="vbmenu_control"><a href="payments.php?$session[sessionurl]">Subscriptions(or whatever you wish to name the link)</a></td>
<td class="vbmenu_control"><ahref="memberlist.php?$session[sessionurl]">$vbphrase[members_list]</a></td>

The red text would be the link to your Subscriptions system and it would be places between the link to your FAQ and your Memberlist.

Hope this helps!