A very easy hack, so easy I hope it hasn't been released before.
Basically it will allow staff members to have their usergroup shown in the postbit. I always once in awhile get a question asked of who is the administrator or who are the moderators, because there are other people on the forum, other than just the staff members, who use custom titles. For example, I have a member who has been on the forum for about 2 months just found out one of the members is a super moderator :dead:
If you want also, you can have it display a small icon for the staff member instead. :ninja:
Make sure that the usergroupid and $poststaff value correspond to the correct usergroup.
1b. If you want to use an icon, use the following code instead in functions.php:
PHP Code:
if ($post[usergroupid] == "6") { $poststaff="[<img src=\"https://vborg.vbsupport.ru/images/adminicon.gif\" alt=\"Administrator\">]";}
else if ($post[usergroupid] == "5") { $poststaff="[<img src=\"https://vborg.vbsupport.ru/images/smodicon.gif\" alt=\"Super Moderator\">]";}
else if ($post[usergroupid] == "7") { $poststaff="[<img src=\"https://vborg.vbsupport.ru/images/modicon.gif\" alt=\"Moderator\">]";}
Once again make sure to replace the correct values. Also you will need to create the 3 icons and place them in your images folder. (heh heh, I inputted {*imagesfolder} and it was parsed into https://vborg.vbsupport.ru/images/modicon.gif" Didn't know that could happen here..) Be sure to replace that URL with your gif url.
2. Now in the postbit template, place $poststaff where ever you like. I have mine right above $post[usertitle]. But if you use an icon, I would place it to the right of the username.
Well that's it! Now check out this cool banana guy--> :banana:
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Where you see the numeric value 700, you need to replace that with the least amount of posts your users can have before they are allowed a custom title.
Then where you see user group name, fill that with the highest usergroup name allowed right before a custom title. For example on these forums if you were allowed a custom title reaching some high amount of posts like 1500, the previous title would be Ultimate Hacker.
Now say your forum allows custom titles from the very start, but you still want to display the usergroup titles. This is easy, but requires a small amount of code to add.
Right below
PHP Code:
if($post[posts] >= 700) { $postgroup = "User group name<br>"; }
just add the amount of levels you have using IF-THEN, and fill them in with the appropriate values, for example:
Now in the postbit replace, if needed, $poststaff with $postgroup. I'm sure there is a much cleaner way of doing it, but oh well. This will suit fine for now..
as i know, there are more than just 1 hack which actually do this, we should merge them all
Quote:
who use custom titles. For example, I have a member who has been on the forum for about 2 months just found out one of the members is a super moderator
isn't there an option in the ACP, to disallow some titles?
Disallow some titles? I'm not sure I'm following you there. There is an option in the AdminCp that allows you to prevent users from using certain words in their custom titles..and I think that's about it...
Originally posted by Xenon you meant a supermod has definied a title so nobody could see it's a supermod right?
yeah, he has defined a custom title that overwrited his original "supermod" status in the postbit, so unless you checked out that "forum leaders" page (which nobody does, seen here), or his profile I suppose, you wouldn't have known he was a super moderator.
Quote:
Originally posted by Mist this hack is great and SOOOO simple to do... its exactly what i want