MyBB Community Forums

Full Version: Add prefix to thread page title
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For threads that begin with a prefix it, that prefix is not displayed in the page title of the thread - atleast for me. For example, whenever somebody visits the thread "Game do you love me?", "Game" is the prefix, in the page title of that thread it would just say "do you love me?"

What do to the thread template (I guess) to include the thread prefix in the page title?
If you are referring to page title in <title> tag then go to ACP -> Templates and styles -> templates -><your theme template set> -> showthread templates -> showthread and find

Quote:<title>{$thread['subject']}</title>

replace it with

Quote: <title>{$thread['threadprefix']}{$thread['subject']}</title>

Save it and you are done.