Status
Not open for further replies.

AnimeHaxor

Retro-NulledTeam
Registered
Joined
8 year 5 month 12 day
Messages
6,522
Reaction score
40,575
Points
113
Site Script
XenForo
Edit this template:

Admin CP -> Appearance -> Templates -> navigation

Add the red code, and change the blue parts appropriately:

Code:
						<li><a href="{xen:link 'find-new/threads'}">{xen:phrase whats_new}</a></li>
					</ul>
				</div>
			</li>
		</xen:if>
 
 
		<!-- mytab -->
		<li class="navTab PopupClosed"><a href="LINK" class="navLink">TAB LABEL</a></li>
 
 
		<!-- extra tabs -->
		<xen:if is="{$extraTabs}">
		<xen:foreach loop="$extraTabs" key="$extraTabId" value="$extraTab">
			<xen:if is="{$extraTab.linksTemplate}">

While you can 'hard code' the LINK and TAB LABEL, ideally you should use xen:link and xen;Phrase. For example, here is the proper code for the Account Upgrades picture above:

Code:
<!-- mytab -->
<li class="navTab PopupClosed"><a href="{xen:link account/upgrades}" class="navLink">{xen:phrase account_upgrades}</a></li>
Closed Thread.
 
Status
Not open for further replies.