XF 1.5 Change prefix "-" separator

clubpromos

Active member
Hi,

I've read in an old post that the helper function controlled the position of the prefix in the page title.
Here are my questions:
1. How do I change the "-" in the page <title> to something else, let's say ":" instead? Makes much more sense for my optimization and prefixes.
2. How to place the prefix at the end of the <title> instead of the beginning?
 
You can modify this in the thread_view template.

To change what gets appended to the prefix, I believe this example should work:
Code:
{xen:helper threadPrefix, $thread, escaped, ':'},/code]
 
Top Bottom