MyBB Community Forums

Full Version: I don't want ''Poll :" prefix
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When someone adds poll to their thread, thread shows like  ''Poll : Thread Name''  I dont want this to happen, it should be always simply ''Thread Name''  what should I do?
In the forumdisplay_thread template remove {$prefix}
Doesnt that make all prefixes removed? I have some other prefixes in forum I use. I only want Poll : to not shown.
It will also remove Moved:. You need to remove this code:
https://github.com/mybb/mybb/blob/featur...1066-L1069
		if($thread['poll'])
		{
			$prefix = $lang->poll_prefix;
		}
from forumdisplay.php
Alternatively, you could just make the poll prefix language setting blank. That way you're not editing the source code.
Oh thank you.