PDA

View Full Version : Moderator Avatars


Rose
11-19-2001, 04:54 PM
I am a member of a couple boards who have set avatars to choose from. The moderators, however, get their own unique moderator that is usually slightly larger than the regular members. However, moderators can't change their own avatar like the admins can.

Is there a hack that can do this? Allow moderators the choice of having a custom av? I don't want to allow the mods into the control panel since this is the only feature I want them to have. I have searched a bit and haven't found it.

:) Is there a kind soul who would like to write such a hack?



:)
Thanks in advance,
Rose
thecharmedgirl@hotmail.com

Sinecure
11-20-2001, 02:20 AM
This sounds like a great hack :D

Admin
11-20-2001, 11:19 AM
If you just want mods to be able to use custom avatars, replace this line in member.php:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts)
to this:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts and ($bbuserinfo[usergroupid]==6 or $bbuserinfo[usergroupid]==5 or $bbuserinfo[usergroupid]==7))

Rose
11-20-2001, 10:23 PM
Thanks, Firefly! I'll try that as soon as I can. :D

Edited to say: Or I'll ask my wonderful co-admin in charge of hacks to do it since I seem to mess things up when I play with codes. ;)

BBurns
11-21-2001, 12:14 AM
Actually, you can implement the stars hack which I have done for my boards. The only user groups that I use stars on is mods, supermods and admin. I made a graphic for the moderators, one for supermods and one for admins at my boards. I select what goes under their name by modifying the postbit template to include the stars.

This way, I allow all of my members to include a custom avatar, as well as giving mods the freedom to do the same. Mods are easily distinguished by the graphic located directly under their name....

Hope that helps.

Rose
11-21-2001, 12:47 PM
Originally posted by BBurns
Actually, you can implement the stars hack which I have done for my boards. The only user groups that I use stars on is mods, supermods and admin. I made a graphic for the moderators, one for supermods and one for admins at my boards. I select what goes under their name by modifying the postbit template to include the stars.

This way, I allow all of my members to include a custom avatar, as well as giving mods the freedom to do the same. Mods are easily distinguished by the graphic located directly under their name....

Hope that helps.


I kinda understand what you are saying, but what's your site so I can see what you mean? ((if you don't mind)) ;)

Matt
11-23-2001, 09:45 PM
If however you would prefer for the admin and moderators to be able to specify a custom avatar whether or not they have the required amount of posts to do so use this.

if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts or ($bbuserinfo[usergroupid]==6 or $bbuserinfo[usergroupid]==5 or $bbuserinfo[usergroupid]==7))