Dylan

Customer
Hi,

How can I display this:

Screenshot_1.png

Here:

Screenshot_2.png

Thanks.
 
I see. Can you tell me how to add it? I'd like to add it on Core please.

Thanks.

You can try opening xb_nav_help and replace the contents with:

Code:
<li class="navTab help <xen:if is="{$controllerName} == 'XenForo_ControllerPublic_Help'">selected<xen:else />Popup PopupControl PopupClosed</xen:if>">
       
   <a href="{$tabs.help.href}" class="navLink<xen:if is="@xb_nav_disablearrow"> NoPopupGadget" rel="Menu</xen:if>">{$tabs.help.title}</a>
   <xen:if is="!@xb_nav_disablearrow"><a href="{$tabs.forums.href}" class="SplitCtrl" rel="Menu"></a></xen:if>
   <div class="xbTabPopupArrow">
     <span class="arrow"><span></span></span>
   </div>
       
       
         <xen:if is="@xb_nav_disablesub">
         <div class="selectedMenu Menu JsOnly tabMenu">
         <xen:else />
         <div class="<xen:if is="{$controllerName} == 'XenForo_ControllerPublic_Help'">tabLinks<xen:else />Menu JsOnly tabMenu</xen:if>">
         </xen:if>
       
         
   <xen:if is="@xb_nav_stretch OR @xb_widen"><div class="xbMaxwidth"></xen:if>
     <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="help_sidebar_links">
       <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>
   <xen:if is="@xb_nav_stretch OR @xb_widen"></div></xen:if>
   </div>
</li>

It might not entirely work correctly but it's not something we'll be supporting in the near future.
 
You can try opening xb_nav_help and replace the contents with:

Code:
<li class="navTab help <xen:if is="{$controllerName} == 'XenForo_ControllerPublic_Help'">selected<xen:else />Popup PopupControl PopupClosed</xen:if>">
     
   <a href="{$tabs.help.href}" class="navLink<xen:if is="@xb_nav_disablearrow"> NoPopupGadget" rel="Menu</xen:if>">{$tabs.help.title}</a>
   <xen:if is="!@xb_nav_disablearrow"><a href="{$tabs.forums.href}" class="SplitCtrl" rel="Menu"></a></xen:if>
   <div class="xbTabPopupArrow">
     <span class="arrow"><span></span></span>
   </div>
     
     
         <xen:if is="@xb_nav_disablesub">
         <div class="selectedMenu Menu JsOnly tabMenu">
         <xen:else />
         <div class="<xen:if is="{$controllerName} == 'XenForo_ControllerPublic_Help'">tabLinks<xen:else />Menu JsOnly tabMenu</xen:if>">
         </xen:if>
     
       
   <xen:if is="@xb_nav_stretch OR @xb_widen"><div class="xbMaxwidth"></xen:if>
     <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="help_sidebar_links">
       <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>
   <xen:if is="@xb_nav_stretch OR @xb_widen"></div></xen:if>
   </div>
</li>

It might not entirely work correctly but it's not something we'll be supporting in the near future.
Thanks, but I changed the code with yours and there has been no change.
 
Open navigation:
Find:
Code:
<xen:if is="!{$selectedTab} AND !@xb_nav_disablesub" >

Replace with:
Code:
    <xen:if is="!{$selectedTab} AND !@xb_nav_disablesub AND {$controllerName} !== 'XenForo_ControllerPublic_Help'" >

Again this did cause a few issues with various things and I'm giving you this code completely unsupported, if you run into problems with it you're kind of on your own as it's not something we're supporting currently.
 
Open navigation:
Find:
Code:
<xen:if is="!{$selectedTab} AND !@xb_nav_disablesub" >

Replace with:
Code:
    <xen:if is="!{$selectedTab} AND !@xb_nav_disablesub AND {$controllerName} !== 'XenForo_ControllerPublic_Help'" >

Again this did cause a few issues with various things and I'm giving you this code completely unsupported, if you run into problems with it you're kind of on your own as it's not something we're supporting currently.
It's unfortunate that this has been removed in the update of XenBase, Russ. It's cleaner with it. Yes, I'm aware and I thank you for your help, once again. :)
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back