MyBB Community Forums

Full Version: Is it possible to make avatar sizes different for user groups?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well say I had VIP groups and they were to have bigger avatar sizes than normal users would it be possible to change it for them?
Or would I have to use PHP my admin to do it?
Here's a quick plugin to do it.

You'll have to edit the plugin - shouldn't be too tricky to see what needs to be done.
The code you're interested is here:
		case '4': // admins
			$mybb->settings['maxavatardims'] = ''; // no limit
			break;
		case '3': // super mods?  (sorry I forgot)
			$mybb->settings['maxavatardims'] = '200x200';
			break;
		case '6': // moderators?  (sorry I forgot)
			$mybb->settings['maxavatardims'] = '100x100';
			break;

Basically, add any usergroup IDs that you want to have custom avatar dimensions.