Quote:
Originally Posted by jw00dy
Great Mod!
Question, I am trying to add a 2nd navbar2 (for a total of 3, original navbar, and 2 navbar2's) how can I accomplish this?
I'm migrating both my forums to this and have started with my wife's site (he he) first.
The reason for the 2nd navbar2 is that I like to place it at the bottom in the footer -- You can see an example on my forum that I've not updated to your mod yet due to wanting to get this working in the footer --> http://www.allthingsmoto.com/ (Having it in the footer is actually very very nice).
I've tried adding $navbar2 to the footer, but it doesn't show for some reason. Would you be willing to tell me how or what I might need to change to make this work in the footer?
|
The only way I have found to make this work in the top and in the footer is to do the following:
Go you your Plugin Manager and remove the check mark from the following plugins:
navbar3 plugin part #1
navbar3 plugin part #2
Now you will have to create a plugin
Go to the Plugin Manager and click on Add New Plugin
Product: vBulletin
Hook Location: global_start
Title: navbar2 top and bottom
Plugin PHP Code:
PHP Code:
eval('$navbar2 = "' . fetch_template('navbar2') . '";');
Plugin Active: YES
Now put the following command in you footer:
Find:
PHP Code:
<td class="tfoot" align="$stylevar[right]" width="100%">
<div class="smallfont">
<strong>
<if condition="$show['contactus']"><a href="$vboptions[contactuslink]" rel="nofollow" accesskey="9">$vbphrase[contact_us]</a> -</if>
Above that add:
$navbar2
PS: You will still have to put the $navbar2 in the navbar template where you want it.