View Full Version : NAVBAR problems
Ohiosweetheart
03-06-2006, 09:12 PM
I'm doing the template edits now. You have navbr template edits, but my estore is on my navbar2 template with the arcade.
This is what the code looks like:
<!-- nav buttons bar -->
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr align="center">
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">Calendar</a></td>
<td class="vbmenu_control"><a href="arcade.php?$session[sessionurl_q]">Arcade</a></td><if condition="$show['member']"><td id="estoremenu" class="vbmenu_control"><a href="$show[nojs_link]#estoremenu">$vbphrase[estore_name] $vbphrase[estore_menu]</a> <script type="text/javascript"> vbmenu_register("estoremenu"); </script></td>
</if><td class="vbmenu_control"><a href="/forums/misc.php?do=showsmilies$session[sessionurl]">Smilies List</a></td>
</tr>
</table>
</div>
<!-- / nav buttons bar -->
this is the entire template.
Now, you have more code going on the navbar template above the
<!-- / NAVBAR POPUP MENUS -->
That's on a separate template from where my estore code is. So do I place that code still on the navbar template? or on my navbar2 template above?? and if on the navbar2 template... where?
Gamersource
03-06-2006, 10:10 PM
I think what you mean is... you have your nav button code on one template and your navbar popup menu code in another template? Well... to keep order, it would be wise to put the proper code where it belongs so you won't lose track of it later.
SO... you will need to place the code (assuming you are using ver. 1.2.6):
<if condition="$show['member']">
<!-- estore tools menu -->
<div class="vbmenu_popup" id="estoremenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead"><a href="estore.php?$session[sessionurl]">$vbphrase[estore_name] $vbphrase[estore_main]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=48">$vbphrase[estore_lottery]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=27">$vbphrase[estore_give_gifts]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=118">$vbphrase[estore_give_ribbons]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=13">$vbphrase[ebux_bank]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=7">$vbphrase[estore_donate]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=16">$vbphrase[estore_thief]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=richestusers">$vbphrase[ebux_richest_users]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=userhistory">$vbphrase[estore_history]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=mostsold">$vbphrase[estore_most_sold]</a></td></tr>
<if condition="is_member_of($bbuserinfo['usergroupid'], $vboptions['estore_adminusergroups'])">
<tr><td class="thead">$vbphrase[estore_admin_only]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=12">$vbphrase[estore_admin_donate]</a></td></tr>
</if>
</table>
</div>
<!-- / estore tools menu -->
</if>
in the the actual navbar template where, from what I believe you said, has the <!-- / NAVBAR POPUP MENUS --> in it. Out of habit, I simply search for <!-- / user cp tools menu --> and place my popup stuff under that... but that's me.
In short.. yes, you can put the navbar popup code in the navbar template and it will (or should) work.
Ohiosweetheart
03-06-2006, 11:15 PM
I have all my add-on stuff... estore, arcade and other stuff on the additional navbar. It's a vb hack, found here. https://vborg.vbsupport.ru/showthread.php?t=106875
In his screenshots he has drop down (or popup) menus.
so what I'm saying is that I want the estore on my additional navbar, but I don't know where to put the big long code that cmx supplied for the menu, on the additional navbar.
Truthfully, I could do without it anyway. as I don't really like it, lol
Gamersource
03-06-2006, 11:47 PM
You can try this:
<!-- nav buttons bar -->
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr align="center">
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">Calendar</a></td>
<td class="vbmenu_control"><a href="arcade.php?$session[sessionurl_q]">Arcade</a></td><if condition="$show['member']"><td id="estoremenu" class="vbmenu_control"><a href="$show[nojs_link]#estoremenu">$vbphrase[estore_name] $vbphrase[estore_menu]</a> <script type="text/javascript"> vbmenu_register("estoremenu"); </script></td>
</if><td class="vbmenu_control"><a href="/forums/misc.php?do=showsmilies$session[sessionurl]">Smilies List</a></td>
</tr>
</table>
</div>
<if condition="$show['member']">
<!-- estore tools menu -->
<div class="vbmenu_popup" id="estoremenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead"><a href="estore.php?$session[sessionurl]">$vbphrase[estore_name] $vbphrase[estore_main]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=48">$vbphrase[estore_lottery]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=27">$vbphrase[estore_give_gifts]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=118">$vbphrase[estore_give_ribbons]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=13">$vbphrase[ebux_bank]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=7">$vbphrase[estore_donate]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=16">$vbphrase[estore_thief]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=richestusers">$vbphrase[ebux_richest_users]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=userhistory">$vbphrase[estore_history]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=mostsold">$vbphrase[estore_most_sold]</a></td></tr>
<if condition="is_member_of($bbuserinfo['usergroupid'], $vboptions['estore_adminusergroups'])">
<tr><td class="thead">$vbphrase[estore_admin_only]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=12">$vbphrase[estore_admin_donate]</a></td></tr>
</if>
</table>
</div>
<!-- / estore tools menu -->
</if>
<!-- / nav buttons bar -->
It should work.
Ohiosweetheart
03-07-2006, 12:06 AM
You can try this:
<!-- nav buttons bar -->
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr align="center">
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">Calendar</a></td>
<td class="vbmenu_control"><a href="arcade.php?$session[sessionurl_q]">Arcade</a></td><if condition="$show['member']"><td id="estoremenu" class="vbmenu_control"><a href="$show[nojs_link]#estoremenu">$vbphrase[estore_name] $vbphrase[estore_menu]</a> <script type="text/javascript"> vbmenu_register("estoremenu"); </script></td>
</if><td class="vbmenu_control"><a href="/forums/misc.php?do=showsmilies$session[sessionurl]">Smilies List</a></td>
</tr>
</table>
</div>
<if condition="$show['member']">
<!-- estore tools menu -->
<div class="vbmenu_popup" id="estoremenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead"><a href="estore.php?$session[sessionurl]">$vbphrase[estore_name] $vbphrase[estore_main]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=48">$vbphrase[estore_lottery]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=27">$vbphrase[estore_give_gifts]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=118">$vbphrase[estore_give_ribbons]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=13">$vbphrase[ebux_bank]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=7">$vbphrase[estore_donate]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=16">$vbphrase[estore_thief]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=richestusers">$vbphrase[ebux_richest_users]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=userhistory">$vbphrase[estore_history]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=mostsold">$vbphrase[estore_most_sold]</a></td></tr>
<if condition="is_member_of($bbuserinfo['usergroupid'], $vboptions['estore_adminusergroups'])">
<tr><td class="thead">$vbphrase[estore_admin_only]</a></td></tr>
<tr><td class="vbmenu_option"><a href="estore.php?$session[sessionurl]do=action&itemid=12">$vbphrase[estore_admin_donate]</a></td></tr>
</if>
</table>
</div>
<!-- / estore tools menu -->
</if>
<!-- / nav buttons bar -->
It should work.
Nope, it's not working at all... the estore isn't even showing up on the additional navbar. It was before, but with the new phrase... for some reason it isn't, even if I take off the pop up menu coding.
Ohiosweetheart
03-07-2006, 04:54 PM
I'm sorry for starting a new thread but the one I started last night won't let me post in it, for some odd reason. :ermm:
I'm still having a problem being able to add the estore to my additional navbar as it doesn't have the correct code in it. Could someone please help me???
Someone did try but their solution didn't work.
Here is the other thread with the details... https://vborg.vbsupport.ru/showthread.php?p=917798#post917798
CMX... please help??
Marco van Herwaarden
03-07-2006, 04:58 PM
Merged Threads. I don't see why you would not be able to post here.
You replied to this thread 3 minutes before you started the new one (now merged)?????
CMX_CMGSCCC
03-07-2006, 05:59 PM
If you PM me with the URL to ur forums admin cp and give me admin access with can administer styles and plugins, I can look into the problem for you and fix it.
-CMX
Gizmo5h1t3
03-07-2006, 07:09 PM
i got around this issue by disabling the navbar plugin, and creating my own dropdown for the estore......makes it a hell of a lot tidier too, as my navbar, and navbar2, were crammed full already.
Ohiosweetheart
03-07-2006, 09:15 PM
Merged Threads. I don't see why you would not be able to post here.
You replied to this thread 3 minutes before you started the new one (now merged)?????
no... I replied to this thread and it kept adding my posts to the same post saying I was double posting... THAT's why I started the new one.
Marco van Herwaarden
03-08-2006, 07:05 AM
no... I replied to this thread and it kept adding my posts to the same post saying I was double posting... THAT's why I started the new one.
If you reply to your own post within 24 hours (without anyone else replied), it will be automatically considered as bumping, and it will merge your reply into your previous post, instead of creating a new post. This is working as designed.
Ohiosweetheart
03-08-2006, 11:52 AM
that's fine hun, I wasn't complaining. Just explaining since you asked ;)
CMX_CMGSCCC
03-08-2006, 01:44 PM
Did u get this issue resolved? Like updated to the new vbPlaza 1.5 and updated the template edits OK?
-CMX
Ohiosweetheart
03-08-2006, 02:10 PM
Did u get this issue resolved? Like updated to the new vbPlaza 1.5 and updated the template edits OK?
-CMX
thank you for asking CMX.. I didn't get it resolved, but now that I have to upgrade, lol... if I am still stumped I'll get back with you!
Thanks sweetie
Ohiosweetheart
03-13-2006, 02:09 AM
OK CMX now I DO need your help!! When I did the edits to my navbar2 template, the link for the store disappeared altogether. NO link at all on my seondary navbar. grrrrrrrrrrrrrr...
can you help?.
X-Files
03-13-2006, 10:19 AM
OK CMX now I DO need your help!! When I did the edits to my navbar2 template, the link for the store disappeared altogether. NO link at all on my seondary navbar. grrrrrrrrrrrrrr...
can you help?.
Can you paste your whole template or pm me it and I will look. Also point me to your site.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.