
Originally Posted by
plnoob
How can I remove the url field from user profiles?
so that users won't be able to set their homepage
You didn't say what template you were using so I can only assume it's the default wistie template.
Open templates/wistie/profile_center.tpl
Remove lines 78, 79, 80, 81
Code:
<td align="right">
<label for="name" accesskey="1">{#PLIGG_Visual_User_Profile_Homepage#}:</label>
<input type="text" name="url" id="url" tabindex="7" value="{$user_url}"><br />
</td>
Open templates/wisite/user_center.tpl
Remove lines 356, 357, 358, 359, 360, 361
Code:
{if $user_url ne ""}
<tr>
<td><strong>{#PLIGG_Visual_User_Profile_Homepage#}:</strong></td>
<td><a href="{$user_url}" target="_blank">{$user_url}</a></td>
</tr>
{/if}