Simple Machines Community Forum

SMF Support => SMF 1.1.x Support => Topic started by: bank robber on January 28, 2007, 04:56:45 PM

Title: How to disable personal text?
Post by: bank robber on January 28, 2007, 04:56:45 PM
SMF Version: SMF 1.1.1
How do I disable personal text?
Title: Re: How to disable personal text?
Post by: codenaught on January 28, 2007, 05:43:46 PM
First, uncheck Admin / Current Theme / Show personal text in message view

Now if you want to also remove it from the Profile -

Open - Themes/default/Profile.template.php and possibly Themes/theme_name/Profile.template.php (If you are using a custom theme that has this template in it)

Code (Find) Select
', $context['member']['blurb'], '
And remove or comment it out.

Next:

Code (Find) Select
<tr>
<td width="40%"><b>', $txt[228], ': </b></td>
<td><input type="text" name="personalText" size="50" maxlength="50" value="', $context['member']['blurb'], '" /></td>
</tr>


And remove it or comment it out.