XF 1.4 Remove (or change position) of thread prefix from TITLE tag

Chromaniac

Well-known member
Licensed customer
Right now it comes before the thread title which is kind of annoying and not that great for SEO. Any easy solution to remove it from the title tag? Or move its position to later part of the title? Thanks.
 
That is controlled in the thread_view template (for example) by these lines of code:
Code:
<xen:title>{xen:helper threadPrefix, $thread, escaped}{$thread.title}{xen:helper pagenumber, $page}</xen:title>
<xen:h1>{xen:helper threadPrefix, $thread}{$thread.title}</xen:h1>

The helper function prepends the prefix text and a - so you can just remove the {xen:helper threadPrefix, $thread, escaped}.
 
Back
Top Bottom