MyBB Community Forums

Full Version: Removing Signatures
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I've done everything I can to remove folks from adding signatures on their own but need to also remove the ability of moderators as well. Right now moderators are able to set a users Signature and I would like to have Signatures removed completely instead.

Anyone know how?

Thanks!
You want to completely remove signatures ?
In postbit and postbit_classic templates, find the following and Remove;
{$post['signature']}
In member_profile template, find the following and Remove;
{$signature}
Just remove the signature from the templates. Then they can set a signature but it won't be displayed.

In 'postbit' template, remove:
{$post['signature']}

In 'member_profile', remove:
{$signature}
Thanks guys, but I'm trying remove the option to even add a user signature from the ModCP (when you edit a user via ModCP) is that possible?
Open > Moderator Control Panel Templates > modcp_editprofile > find the following and remove;
<tr>
							<td colspan="2" class="trow1" valign="top">
								<fieldset class="trow1">
									<legend><strong>{$lang->signature}</strong></legend>
									<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td class="trow1" width="80%">
<textarea rows="15" cols="70" id="signature" name="signature">{$user['signature']}</textarea>
{$codebuttons}
</td>
</tr>
{$suspend_signature}
									</table>
								</fieldset>
							</td>
						</tr>
(2011-05-31, 11:59 PM)xomp Wrote: [ -> ]Thanks guys, but I'm trying remove the option to even add a user signature from the ModCP (when you edit a user via ModCP) is that possible?

Admin CP > Templates > Templates > Your Theme > Mod CP Templates > modcp_editprofile > Find and remove

<tr>
							<td colspan="2" class="trow1" valign="top">
								<fieldset class="trow1">
									<legend><strong>{$lang->signature}</strong></legend>
									<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td class="trow1" width="80%">
<textarea rows="15" cols="70" id="signature" name="signature">{$user['signature']}</textarea>
{$codebuttons}
</td>
</tr>
{$suspend_signature}
									</table>
								</fieldset>
							</td>
						</tr>

(2011-06-01, 12:02 AM)Yaldaram Wrote: [ -> ]Open > Moderator Control Panel Templates > modcp_editprofile > find the following and remove;
<tr>
							<td colspan="2" class="trow1" valign="top">
								<fieldset class="trow1">
									<legend><strong>{$lang->signature}</strong></legend>
									<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td class="trow1" width="80%">
<textarea rows="15" cols="70" id="signature" name="signature">{$user['signature']}</textarea>
{$codebuttons}
</td>
</tr>
{$suspend_signature}
									</table>
								</fieldset>
							</td>
						</tr>

Ah you beat me to it! Dang!
(2011-06-01, 12:02 AM)Yaldaram Wrote: [ -> ]Open > Moderator Control Panel Templates > modcp_editprofile > find the following and remove;
<tr>
							<td colspan="2" class="trow1" valign="top">
								<fieldset class="trow1">
									<legend><strong>{$lang->signature}</strong></legend>
									<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td class="trow1" width="80%">
<textarea rows="15" cols="70" id="signature" name="signature">{$user['signature']}</textarea>
{$codebuttons}
</td>
</tr>
{$suspend_signature}
									</table>
								</fieldset>
							</td>
						</tr>

Thanks! that did the trick! +rep to you and Jason Smile
(2011-06-01, 12:05 AM)xomp Wrote: [ -> ]
(2011-06-01, 12:02 AM)Yaldaram Wrote: [ -> ]Open > Moderator Control Panel Templates > modcp_editprofile > find the following and remove;
<tr>
							<td colspan="2" class="trow1" valign="top">
								<fieldset class="trow1">
									<legend><strong>{$lang->signature}</strong></legend>
									<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td class="trow1" width="80%">
<textarea rows="15" cols="70" id="signature" name="signature">{$user['signature']}</textarea>
{$codebuttons}
</td>
</tr>
{$suspend_signature}
									</table>
								</fieldset>
							</td>
						</tr>

Thanks! that did the trick! +rep to you and Jason Smile

Glad Yaldaram and I could help. Hope that fixes your problem.
You're welcome =)