MyBB Community Forums

Full Version: Remove link to image urls via ucp
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Basically I want to remove the link to image urls , where you can change your profile picture , I want it so they can only upload images to use them.
admin panel >> templates >> active theme templates >> User Control Panel Templates >> usercp_avatar
find and remove code like below (you can also wrap it with html comment tags)
<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>
(2013-09-21, 07:22 PM).m. Wrote: [ -> ]admin panel >> templates >> active theme templates >> User Control Panel Templates >> usercp_avatar
find and remove code like below (you can also wrap it with html comment tags)
<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>

Thanks appreciate the help ! Smile