MyBB Community Forums

Full Version: Adding thread prefixes to forumdisplay.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way I can achieve the vBulletin-style forumdisplay.php(EG: Sticky: thread title, Announcement: thread title.)?
What files would I need to modify and where in the files?
This feature is comming out in MyBB 1.4 Wink released soon I hope
ct2k7 Wrote:This feature is comming out in MyBB 1.4

Oh really?


StingReay Wrote:Is there any way I can achieve the vBulletin-style forumdisplay.php(EG: Sticky: thread title, Announcement: thread title.)?
What files would I need to modify and where in the files?

In forumdisplay.php, find:
		if($thread['poll'])
		{
			$prefix = $lang->poll_prefix;
		}
After, add:
		if($thread['sticky'])
		{
			$prefix .= ' Sticky: ';
		}

In inc/languages/english/forumdisplay.lang.php, before the last ?> add:
$l['announcement_prefix'] = 'Announcement:';