This is under breadcrumps navbar
Ok here is part of the default code for 3.6.8 that I'm now doing a fresh mod on to reflect the register button deleted and a Home Page and Forum Button that will be a link to each respective page anywhere on the forum. If all goes as expected it should show up on not only the vbulletin pages but also the vbadvanced pages.
Here is the current problem I'm having. After deleting the code for the Register button and link from the top of the nav bar I C&P the code for the user cp button 2 times on top of where its currently located in the code making 3 total user cp buttons all working to the user cp page. I then renamed the buttons and renamed the .php files to their respective link or .php
The trouble I ran into is that the it worked find for the newly created forum button but the exact same process did not work for the home_page button. The button clearly isnt there onthe nav buttons at the top of the page. Now if i change the name of the button back to user cp and leave it linked to the forumpage that I have named vbindex.php the newly named user cp button will bring you to the home page, so it clearly is just an issue of getting the button to appear in the nav bar. Im just not sure as to why it will not show up. (All old vbindex files are deleted and the vbadvanced page or folder is renamed vbindex).
Here is the C&P of the section of the code Im working on
Code:
<!-- / breadcrumb, login, pm info -->
<!-- nav buttons bar -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<if condition="$show['member']">
<td class="vbmenu_control"><a href="vbindex.php$session[sessionurl_q]">$vbphrase[home_page]</a></td> <<<<<problem button
<td class="vbmenu_control"><a href="index.php$session[sessionurl_q]">$vbphrase[forum]</a></td>
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
$template_hook[navbar_buttons_left]
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
Well unless it shows up just for administrators I was logged in and it was still there. Nevertheless I deleted it and all is working good by simply removing it from the code.