MyBB Community Forums

Full Version: Set A Default Prefix For one forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

How can I set a default prefix for one forum.

Thanks
you might need a core edit for this... edit this part of newthread.php file to something like below...

if(!$mybb->get_input('threadprefix', MyBB::INPUT_INT))
if ($forum['fid'] == X)
	{
		$mybb->input['threadprefix'] = Y;
	}
else
	{
		$mybb->input['threadprefix'] = 0;
	}


where X is the forum id (fid) of that forum wher you want a default prefix and Y is the id (pid) of the prefix which you want as default..