MyBB Community Forums

Full Version: Signature not ticked by default
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My users have been complaining about having to always tick the box to display signatures in posts but from my knowledge this is always ticked by default. Any idea how can I can set it so that be default it is ticked?
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Show Thread Templates > showthread_quickreply.

2. Find:

<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" {$postoptionschecked['signature']} />&nbsp;<strong>{$lang->signature}</strong></label><br />

3. Replace with:

<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" checked="checked" />&nbsp;<strong>{$lang->signature}</strong></label><br />
If they have a signature set, it'll be ticked, unless you've edited the code to mean that doesn't happen.
Thanks for the help.