MyBB Community Forums

Full Version: Add PreFix before Subject
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i add prefix before subject line.?

and how can i add more fields in post a new Thread saction ?
For thread prefix: http://www.mybb.com/features/threads

And what fields do you want to add ?
Thanks Yaldaram for help ...

I have added prefixes .
How can i make one of these prefixes mandatory with subject for every user before posting anything ?
Open ./newthread.php file and find;
$mybb->input['threadprefix'] = 0;
and change 0 to the Prefix ID number you wish to use it as a mendatory. Wink

What i am trying to do is a user must select minimum one prefix from the list of all prefixes with subject and massege before posting any new thread...
The above modification will auto select that prefix while creating a new thread. How ever if you want to enforce users to must select any other prefix, it requires a plugin.
ok ..

from where can i find that plugin ?
How can we show the prefix in the forum statistics area? I want to show it as in the screenshot

ScreenShoot : https://prnt.sc/qt4rzd
Adding the prefix to the thread listing in Statistics, requires major changes to PHP core files - these threads are read from the forum cache, that needs to be modified.

[ExiTuS]