why is "Terms and Rules" not showing in the nav ?

erich37

Well-known member
when clicking onto the "Help"-Tab, we also see the section "Terms and Rules" at the page.

But why is "Terms and Rules" not showing as a sub-nav Tab within the Navigation-bar ?

Also, either put the "Privacy Policy" also under the "Help"-section or skip the "Terms and Rules" from the "Help"-section.

All of this is not consistent.......

terms_navbar.webp
 
You can add it by editing this template:

Admin CP -> Appearance -> Templates -> navigation

Add the red code:

Rich (BB code):
		<!-- help -->
		<xen:if is="{$tabs.help}">
			<li class="navTab help {xen:if $tabs.help.selected, 'selected', 'Popup PopupControl PopupClosed'}">
			
				<a href="{$tabs.help.href}" class="navLink" rel="help">{$tabs.help.title}</a>
				<a href="{$tabs.help.href}" class="SplitCtrl" rel="Menu"></a>
				
				<div class="{xen:if {$tabs.help.selected}, 'tabLinks', 'Menu JsOnly tabMenu'}">
					<div class="primaryContent menuHeader">
						<h3>{$tabs.help.title}</h3>
						<div class="muted">{xen:phrase quick_links}</div>
					</div>
					<ul class="secondaryContent blockLinksList">
					<xen:hook name="navigation_tabs_help">
						<li><a href="{xen:link help/smilies}">{xen:phrase smilies}</a></li>
						<li><a href="{xen:link help/bb-codes}">{xen:phrase bb_codes}</a></li>
						<li><a href="{xen:link help/trophies}">{xen:phrase trophies}</a></li>
						<xen:if is="{$tosUrl}"><li><a href="{$tosUrl}">{xen:phrase terms_and_rules}</a></li></xen:if>
					</xen:hook>
					</ul>
				</div>
			</li>
		</xen:if>
 
Top Bottom