XF 1.2 how can i get the help back in the navigation bar

Cees50

Active member
I searched the forum, and i find things how to get rid of the help tab, but not with the whole code. So my question is Which code do i use to get the help tab back in the navigation?
 
I found this in the footer template


Code:
<li><a href="{xen:link help}">{xen:phrase help}</a></li>

I tried to place that in the navigation template, but i only get strange results, it messed up the nav bar. Where should i place that so it shows up at the end? (i'm no coder, trying to)
 
Try this:
Code:
<!-- help -->
<li class="navTab help 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="Menu JsOnly tabMenu helpTabLinks">
        <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>
            <li><a href="{xen:link help/cookies}">{xen:phrase cookie_usage}</a></li>
            <xen:if is="{$tosUrl}"><li><a href="{$tosUrl}">{xen:phrase terms_and_rules}</a></li></xen:if>
        </xen:hook>
        </ul>
    </div>
</li>

Add it after the <!-- members --> block.
 
Top Bottom