Jake Bunce
Well-known member
This guide is for removing the board title affix from the page title that you see at the top of your browser window. For example, in this screenshot the page title is Template Modifications | XenForo Community:

This guide is for removing the XenForo Community part of the title.
Edit this template:
Admin CP -> Appearance -> Templates -> PAGE_CONTAINER
Change this:
...to this:
Note that the board title is still used on the index page which is what the xen:if condition does.
And you can change the board title in your:
Admin CP -> Home -> Options -> Basic Board Information -> Board Title

This guide is for removing the XenForo Community part of the title.
Edit this template:
Admin CP -> Appearance -> Templates -> PAGE_CONTAINER
Change this:
Code:
<title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle}</xen:if></title>
...to this:
Code:
<title><xen:if is="{$title}">{xen:raw $title}<xen:else />{$xenOptions.boardTitle}</xen:if></title>
Note that the board title is still used on the index page which is what the xen:if condition does.
And you can change the board title in your:
Admin CP -> Home -> Options -> Basic Board Information -> Board Title