XF 1.2 Thread Prefix....how do I make them not to show on title

easiii

Well-known member
Hello,
I'm using some Thread Prefix for some of my forums and I like them, but how can I make them not to show on the <title>...... Basically, when I create a thread the title becomes:
Thread Prefix - Title of Thread. How can I remove the Thread Prefix from the title of the thread?
 
Edit the thread_view template.

Change this:
HTML:
<xen:title>{xen:helper threadPrefix, $thread, escaped}{$thread.title}{xen:helper pagenumber, $page}</xen:title>

To this:
HTML:
<xen:title>{$thread.title}{xen:helper pagenumber, $page}</xen:title>
 
Top Bottom