MyBB Community Forums

Full Version: Enhanced Signature Separator (ESS)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Enhanced Signature Separator

Desciption: You can change the signature separator and don't remove the <br /> tag in the text area in settings.

Setting(s): 2

Screenshot(s):
[Image: 14327156.png]

Downloads:
[attachment=21609]
Mod Site - http://mods.mybb.com/view/enhanced-signa...arator-ess
Approved... don't really see why this needs to be a plugin though, you're adding a setting to change what can already be changed in the templates... this is in the postbit_signature template:

<hr size="1" width="25%"  align="left" />
{$post['signature']}

You can just change the separator here...
^^ yes. having plugins for simple things also will increase the burden on the site. as matt said, changing that width from 25% to 100% will do the work
Yeah, I just practicing the php Smile and plugin system hehe
i just change the template to use:

<br /><br />
<br /><br /><fieldset style="margin: 0 auto;">
{$post['signature']}
</fieldset>

to box in the signatures