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" /> {$lang->enable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="disable" /> {$lang->disable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="0" checked="checked" /> {$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" /> {$lang->enable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="disable" /> {$lang->disable_sig_posts}</label><br />
<label><input type="radio" class="radio" name="updateposts" value="0" /> {$lang->leave_sig_settings}</label></span>
(see also
documentation on templates)