MyBB Community Forums

Full Version: More than 1 rank
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wanna thank eubenor w/e his name is for my previous problem. Is there a mod so people on mybb can have more than 1 rank? For example the same guy can have moderator and admin rank with their images of course? And 1 more. Is there a mod where people can post like this on the forums and not like they post now?

[Image: S1HHG.png]
Admincp -> Users & Groups -> Users -> Whichever user you want to add to another usergroup -> Profile -> Additional User Groups

Also use this plugin for the additional usergroup images: http://mods.mybb.com/view/additional-usergroup-images
ok thnx for the mod it's working now how can i post like on that ss?
You mean the classic postbit?
yep like they post there on ss or like this:

http://t0.gstatic.com/images?q=tbn:ANd9G...0qma1se5_w
Admincp -> Configuration -> Settings -> Show Thread Options -> Display posts using the classic layout

Now run this query in PHPMyAdmin (or whatever database manager you use):
UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0'

To remove the option from Usercp:

Admincp -> Templates & Style -> Templates -> Your Template Set -> User Control Panel Templates -> usercp_options

Find:
	<tr>
	<td valign="top" width="1"><input type="checkbox" class="checkbox" name="classicpostbit" id="classicpostbit" value="1" {$classicpostbitcheck} /></td>
	<td><span class="smalltext"><label for="classicpostbit">{$lang->show_classic_postbit}</label></span></td>
	</tr>

Replace with:
<input type="hidden" name="classicpostbit" id="classicpostbit" value="1" />