MyBB Community Forums

Full Version: Signature default action
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When you want to change your signature from the UserCP, is there a way to have a default action set?

So now the default is checked on 'No action.',

but what if you want this to be checked on default for 'Enable my signature in all of my existing posts.'?

Is this possible to change from the admin CP? I've checked, but couldn't find any options for this.
navigate to below location and open usercp_editsig template

admin panel >> templates >> your forum's active theme templates >> User Control Panel Templates >> usercp_editsig

find code like below
<span class="smalltext">
<label><input type="radio" class="radio" name="updateposts" value="enable" />&nbsp;{$lang->enable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="disable" />&nbsp;{$lang->disable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="0" checked="checked" />&nbsp;{$lang->leave_sig_settings}</label></span>

change to below code and save the template
<span class="smalltext">
<label><input type="radio" class="radio" name="updateposts" value="enable"  checked="checked" />&nbsp;{$lang->enable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="disable" />&nbsp;{$lang->disable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="0" />&nbsp;{$lang->leave_sig_settings}</label></span>

(see also documentation on templates)