XF 1.2 Modify <title> without changing Board Title

Moddis

Active member
Is there an easy way to modify the tittle tags that show up in the tab of the browsers without actually modifying the board title in the options? The reason for this is that I would like to keep the board title one work but would like to have a small phrase for the <title>.


Thanks!
 
I've edited PAGE_CONTAINER template myself

There's a line there starting with <title> (Line number 15 or so) and I've replaced that line with:
Code:
<title><xen:if is="{$title}">{xen:raw $title} | My Forums Title Here<xen:else />My Forums Title Here</xen:if></title>

I don't know if this is the right way to do it, but it works for me.
 
Top Bottom