vBPlaza not shwoing in Navbar

Ok heres how i would do it - Go to -

Admin Cp > Style manager . Select Template > Edit Template > Navigations > Expand > Navbar > Edit

Then find this part of the code

Code:
		<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>

and then after it add this

Code:
		<td class="vbmenu_control"><a href="URL TO VBPLAZE">vBPlaze</a></td>
Obviously the URL bit needs changing!!!!!

Don't know the URl to vBPlaze so can't say what it is but if you/someone does thats one way of doing it.

Other is going into the vBPlaza settings and seing if it has NavBar display ticked to No instead of yes.
 
It possibly might be -

Glitch Central Forums

If so then the code to enter could look like this if you do it this way, but i would check the settings first!

Code:
		<td class="vbmenu_control"><a href="http://www.glitchcentral.co.uk/vbplaza.php">vBPlaze</a></td>
 
it didnt work because the

Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
wasnt there
 
1st, you didnt go trough vBplaza Settings carefully,
I had problems with that myself, had to delete some hook calls, and had to empty a template..
 
Error 404 said:
1st, you didnt go trough vBplaza Settings carefully,
I had problems with that myself, had to delete some hook calls, and had to empty a template..
Even template had callhomes?!
 
Find in the navbar template:

Code:
			<td align="center" class="h_nav"><a href="usercp.php">User CP</a></td>

		<td><img src="essential/misc/nav_div.gif" alt="" /></td>
</td>

Add the following code below:

Code:
<if condition="$show['popups']">
	<!-- vbPlaza start -->
	<td align="center" id="navbar_vbplaza" class="h_nav">
		<a href="vbplaza.php?$session[sessionurl]">$vbphrase[vbplaza_name_title] $vbphrase[vbplaza_menu]</a>
		<script type="text/javascript"> vbmenu_register("navbar_vbplaza"); </script>
		
	</td>
<td><img src="essential/misc/nav_div.gif" alt="" /></td>

		<!-- / vbplaza tools menu -->
	<!-- vbPlaza end -->
<else />
	<!-- vbPlaza start -->
	<td align="center" class="h_nav">
		<a href="vbplaza.php$session[sessionurl_q]">$vbphrase[vbbux_name_title] / $vbphrase[vbplaza_name_title]</a>
	</td>
<td><img src="essential/misc/nav_div.gif" alt="" /></td>
	<!-- vbPlaza end -->
</if>

Find in navbar template:

Code:
<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->

Below add:

Code:
<!-- vbplaza tools menu -->
		<div class="vbmenu_popup" id="navbar_vbplaza_menu" style="display: none;">
			<table cellpadding="4" cellspacing="1" border="0">
			<tr><td class="thead"><a href="vbplaza.php?$session[sessionurl]">$vbphrase[vbplaza_name_title] $vbphrase[vbplaza_main]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=bank">$vbphrase[vbbux_bank]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=donate">$vbphrase[vbplaza_donate]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=give_gifts">$vbphrase[vbplaza_give_gifts]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=give_ribbons">$vbphrase[vbplaza_give_ribbons]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=lottery">$vbphrase[vbplaza_lottery]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=thief">$vbphrase[vbplaza_thief]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=mostsold">$vbphrase[vbplaza_most_sold_items]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=richest">$vbphrase[vbplaza_richest_users]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=userhistory">$vbphrase[vbplaza_history]</a></td></tr>
			<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=inventory">$vbphrase[vbplaza_inventory]</a></td></tr>
			<if condition="$show['adminlinks']">
				<tr><td class="thead"><a href="vbplaza.php?$session[sessionurl]">$vbphrase[vbplaza_admin_only]</a></td></tr>
				<tr><td class="vbmenu_option"><a href="vbplaza.php?$session[sessionurl]do=item&name=admin_donate">$vbphrase[vbplaza_admin_donate]</a></td></tr>
			</if>
			</table>
			</div>
<!-- / vbplaza tools menu-->

Should do it automaticaly to be honest, but you have that skin which does not use the default classes/coding.
 
Code:
		<td align="center" class="h_nav"><a href="usercp.php">User CP</a></td>

		<td><img src="essential/misc/nav_div.gif" alt="" /></td>
</td>

thats not there:( Im i in Right place?

Admin Cp>Styles and templates>style manager>Essiential>edit template>navagation/breadcrumb templates>navbar

is that right?
 
Back
Top