The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
How do I move the navbits?
I have a forum right now that does not have navbits because I tried to move them out of the navbar template. I failed and I really have no clue how to do it. My forums is NarutoSoul. I added a custom welcome box below the in-progress navbar. Right between the new navbar and welcome box I want to add the navbits there. Does anyone know how to do this and could explain to me how its done please?
|
#2
|
||||
|
||||
The navbits are located in the Header template, look for <!-- nav buttons bar --> and <!--/ nav buttons bar -->
|
#3
|
|||
|
|||
Correction that is only on some styles on most styles its located on the navbar template.
|
#4
|
||||
|
||||
Yeah I know in the default its in the navbar section but If I remove that info and add it to the header template it will not show. That skin was coded by me and another admin of my site. I removed the code before and it will not show the navbits.
Heres the code I got from the navbar template PHP Code:
|
#5
|
|||
|
|||
So you want to add the navbits between the two menus? The navbar and the menu above it? If so then you may want to try and place the code at the very top of your navbar depending upon where the other menu resides in the templates. I would make sure that the menu above the navbar is in the header personally and then place the navbits code at the top of the navbar template. You can place that code in a table or just place it as it is.
|
#6
|
||||
|
||||
kind of I made a custom navbar using suckerfish since the original vbulletin one has its limits. I noticed that you can't display navbits outside of the navbar template. All my custom work is in the header template. The funny thing is it has $navbits = build_navbits($navbits); on index.php but if you move the above code form my last post into the header template it will not display the navbits. Does anyone know of away to move the navbits into the header template?
|
#7
|
|||
|
|||
Quote:
Open your header template and add this code where you want the navbits to show: Code:
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" width="100%"> <if condition="is_array($navbits)"> <table cellpadding="0" cellspacing="0" border="0"> <tr valign="bottom"> <td><a href="#" onclick="history.back(1); return false;"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td> <td> </td> <td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td> </tr> <tr> <td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><if condition="$_SERVER['REQUEST_METHOD'] == 'POST'"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="" border="0" /><else /><a href="$navbar_reloadurl"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="$vbphrase[reload_this_page]" border="0" /></a></if> <strong>$navbits[lastelement]</strong></td> </tr> </table> <else /> <div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div> </if> </td> </tr> </table> Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" width="100%"> <if condition="is_array($navbits)"> <table cellpadding="0" cellspacing="0" border="0"> <tr valign="bottom"> <td><a href="#" onclick="history.back(1); return false;"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td> <td> </td> <td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td> </tr> <tr> <td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><if condition="$_SERVER['REQUEST_METHOD'] == 'POST'"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="" border="0" /><else /><a href="$navbar_reloadurl"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="$vbphrase[reload_this_page]" border="0" /></a></if> <strong>$navbits[lastelement]</strong></td> </tr> </table> <else /> <div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div> </if> </td> </tr> </table> |
#8
|
||||
|
||||
Thats what I already posted it will not show anything at all on other pages besides index.php.
|
#9
|
|||
|
|||
Ok in order for it to show on the other pages you may have to place that same code on the other pages that utilize the header areas. So try copying that code into the templates that contain the $navbar code in them. you can find that by using the Search In Templates function in your admincp. There are several of them off the top of my head I know that FORUMHOME, FORUMDISPLAY, SHOWTHREAD, SHOWTHREADSHOPOST & threadbit I believe are some of them. You would also have to put the code in the calendar template if you use it and the faq etc. That may be the only way to do it. I've done that before with a skin and had to pretty much put that code in every place I used that had the navbar code in it. It would be alot of places to stick the code but it would solve your problem of not having the navbits exactly where you wanted them.
|
#10
|
||||
|
||||
My question is if it has the navbits code in the php page why wouldn't it work by just moving the code to the header template since header shows on all pages? could I call the $navbar inside the header template and just remove it from the files?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|