MyBB Community Forums

Full Version: Needed Plugin (Mod) for This | Help Me
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have seen a forum on which they display special promotions and other newly added things in notice style>>>>



Can anybody provide me the same plugin link or the manuall configuration for the same ????


Waiting for quick replies !!!
You can do this easily with Template Conditionals. Install this: http://community.mybb.com/thread-31860.html

Now Open forumdisplay template of that theme and find;
{$moderatedby}

Add the following code just above that;
<if $mybb->user['usergroup'] == "2" then>
YOUR_CODE_GOES_HERE
</if>

Replace YOUR_CODE_GOES_HERE with your code which you want to add/show there. This will be show to all Registered users.
Thanks for your quick help !
Most welcome.