MyBB Community Forums

Full Version: Remove Gravatar Option?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Looking to remove the Gravatar option or disable it. Thanks!
Same!
There is no Option in die Admin-CP.
I didn't find the right place to remove it yet.
Anyone have a hint?
^ you can remove code segment like below from usercp_avatar template
<td class="trow2" width="60%">
<input type="text" class="textbox" name="avatarurl" size="45" value="{$avatarurl}" />
<br /><span class="smalltext">{$lang->avatar_url_gravatar}</span>
</td>
Thanks!

User Control Panel Templates >  usercp_avatar
Remove:
<tr>
				<td class="trow2" width="40%">
					<strong>{$lang->avatar_url}</strong>
					<br /><span class="smalltext">{$lang->avatar_url_note}</span>
				</td>
				<td class="trow2" width="60%">
					<input type="text" class="textbox" name="avatarurl" size="45" value="{$avatarurl}" />
					<br /><span class="smalltext">{$lang->avatar_url_gravatar}</span>
				</td>
			</tr>

Than you can remove line 2128 to 2198 in usercp.php too.
^ oh, I missed other code segment on the template! Thanks for rectifying