MyBB Community Forums

Full Version: disableing custom avatars....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi

how do i disable custom avatars and where users can use a link from a site ?

thank
shaunBig Grin
ACP >> Users & Groups >> Groups >> groupname >> Users & Permissions >> Can upload avatars? >> Untick

Templates & Style >> Templates >> yourtheme >> User Control Panel Templates >> usercp_avatar

Find and delete:
<tr>
<td class="tcat" colspan="2"><strong>{$lang->custom_avatar}</strong></td>
</tr>
<tr>
<td class="trow1" width="40%"><strong>{$lang->avatar_upload}</strong></td>
<td class="trow1" width="60%">
<form enctype="multipart/form-data" action="usercp.php" method="post">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="file" name="avatarupload" size="25" class="fileupload" />
{$auto_resize}
</td>
</tr>
<tr>
<td class="trow2" width="40%"><strong>{$lang->avatar_url}</strong></td>
<td class="trow2" width="60%"><input type="text" class="textbox" name="avatarurl" size="45" value="{$avatarurl}" /></td>
</tr>

Find and delete:
<input type="submit" class="button" name="submit" value="{$lang->change_avatar}" />

That just leaves the option to use gallery images.
thanks !