XF 2.2 Where to change | to - (bar to dash) in <title> tag before site name

bzcomputers

Well-known member
Where do I go to edit the transition from page name to site name in the <title> tag. XenForo currently uses the "|" bar and I would like to change it to a "-" dash.
 
Solution
PAGE_CONTAINER template Line 21

Change:
Code:
<title><xf:title formatter="%s | %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>

To:
Code:
<title><xf:title formatter="%s - %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
PAGE_CONTAINER template Line 21

Change:
Code:
<title><xf:title formatter="%s | %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>

To:
Code:
<title><xf:title formatter="%s - %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>
 
Solution
Top Bottom