Hi huys!
I am trying to hide the titleboard only on the main page and in the nodes, so that it does not appear in threads or articles.
I have used this conditional but it works on the main page, threads and articles, but not on the nodes, where is the error?
PAGE_CONTAINER
<xf:if is="$template == 'forum_list'">
<title><xf:title formatter="%s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
<xf:elseif is="$template == 'forum_view_type_article'"/>
<title><xf:title formatter="%s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
<xf:else />
<title><xf:title formatter="%s" page="{$pageNumber}" /></title>
</xf:if>
I am trying to hide the titleboard only on the main page and in the nodes, so that it does not appear in threads or articles.
I have used this conditional but it works on the main page, threads and articles, but not on the nodes, where is the error?
PAGE_CONTAINER
<xf:if is="$template == 'forum_list'">
<title><xf:title formatter="%s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
<xf:elseif is="$template == 'forum_view_type_article'"/>
<title><xf:title formatter="%s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
<xf:else />
<title><xf:title formatter="%s" page="{$pageNumber}" /></title>
</xf:if>