XF 2.2 change title on forum home only

Nicolas FR

Well-known member
Hello,

i saw many post about this but no one seems to be up to date... Conditional statements from @Brogan are for XF 1, but with a little customization they are ok.
But in page CONTAINER how can i place it, i tried without succes...

the action take place here
HTML:
<xf:if contentcheck="true">
    <div class="p-title {{ $noH1 ? 'p-title--noH1' : '' }}">
    <xf:contentcheck>
        <xf:if is="!$noH1">
            <h1 class="p-title-value">{$h1}</h1>
        </xf:if>
        <xf:if contentcheck="true">
            <div class="p-title-pageAction"><xf:contentcheck><xf:pageaction /></xf:contentcheck></div>
        </xf:if>
    </xf:contentcheck>
    </div>
</xf:if>

Where to place this ?
HTML:
<xf:if is="{$contentTemplate} == 'forum_list'">
    This content will show on the forum_list template
<xf:else />
    ...
</xf:if>
I tried many places but i'm still stuck !

Thanks ! :)
 
Last edited:
Top Bottom