Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I see. Can you tell me how to add it? I'd like to add it on Core please.It's like that by default:
https://xenforo.com/community/help/
We had it like that previously with the sub-nav showing but it was messing things up in regards to other settings.
I see. Can you tell me how to add it? I'd like to add it on Core please.
Thanks.
<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>
Thanks, but I changed the code with yours and there has been no change.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.
<xen:if is="!{$selectedTab} AND !@xb_nav_disablesub" >
<xen:if is="!{$selectedTab} AND !@xb_nav_disablesub AND {$controllerName} !== 'XenForo_ControllerPublic_Help'" >
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.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.