MyBB Community Forums

Full Version: Disable Avatars
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there an option to totally disable avatars? I only see the option to disable uploading of avatars.
Well, you have the option to not see them in posts. UCP -> Edit Options

I don't recall a way to disable them globaly, but I'll see what I can dig up. Smile
Admin CP -> Users and Groups -> Manage Groups

and then, for each group, under "Permissions: Account Management", setting "can upload avatars" to "no" could be the way to go.

Kind regards,
Zorro
I guess you can make a small code modification:
Open usercp.php
Find:
if($mybb->input['action'] == "do_avatar" && $mybb->request_method == "post")
{
And find:
if($mybb->input['action'] == "avatar")
{
For both of the above, add this code after:
error("Avatars have been disabled");