Hello,
This is my problem:
I want to remove the "Forums" link only when a XenForo Page (pages/test/) is viewed.
I searched and found this code for XF 1.1, which removes the "Forums" link on all pages, but it didn't work for me... (I'm on XF 1.3 Beta 1)
Greets
attemis
This is my problem:
I want to remove the "Forums" link only when a XenForo Page (pages/test/) is viewed.
I searched and found this code for XF 1.1, which removes the "Forums" link on all pages, but it didn't work for me... (I'm on XF 1.3 Beta 1)
Code:
<xen:if is="{$selectedTab}">
<span class="crust"{xen:if $microdata, ' itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb"'}>
<a href="{$selectedTab.href}" class="crumb"{xen:if $microdata, ' rel="up" itemprop="url"'}><span{xen:if $microdata, ' itemprop="title"'}>{$selectedTab.title}</span></a>
<span class="arrow"><span>></span></span>
</span>
</xen:if>
attemis