Quote:
Originally Posted by cedar
Wait for the following version support 3.7
Btw, I read some pages but dont see how to add a link to downloads.php in navbar!Someone pls helps me...I need to remove the FAQ shortcut link and add a shortcut to downloads.php into this position!Of course I'm using 3.7 
|
The currect version works fine with vB 3.7 (except for the optional profile template edits)
Adding a link in the navbar template is documented in the Readme-Install.txt:
Quote:
Perform the following OPTIONAL template edit (only required if you want a 'Downloads' link in your navigation bar)
Find in navbar:
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
If you are running vBulletin 3.6.7 (or higher), you need to search for the following as it changed slightly:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
Add below:
<td class="vbmenu_control"><a href="downloads.php$session[sessionurl_q]">$vbphrase[ecdownloads_downloads]</a></td>
|
This will add the link after the Calendar link. For replacing the FAQ link with it, just find
HTML Code:
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
and replace it with
HTML Code:
<td class="vbmenu_control"><a href="downloads.php$session[sessionurl_q]">$vbphrase[ecdownloads_downloads]</a></td>