XF 1.4 how to remove title board from title only in thread view

jamalfree

Active member
hi
how to remove title board from title only in thread view!!!
i try to edit PAGE_CONTAINER template and put condition to remove "| {$xenOptions.boardTitle}" only from thread view but i Failed
 
i want board title showing in all pages except threads
change from this one
<title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle}</xen:if></title>
to
<title><xen:if is="{$title}">{xen:raw $title}<xen:else />{$xenOptions.boardTitle}</xen:if></title>
 
can you bragan correct this condition please
<title><xen:if is="{$title}">{xen:raw $title}<xen:if is="{$contentTemplate} != ' thread_view'"> | {$xenOptions.boardTitle}</xen:if><xen:else />{$xenOptions.boardTitle}</xen:if></title>
 
<title><xen:if is="{$title}">{xen:raw $title}<xen:if is="{$contentTemplate} != ' thread_view'"></xen:if><xen:else />{$xenOptions.boardTitle}</xen:if></title>
 
Top Bottom