Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2696

phpBB Custom Coding • Re: Signature setting default on for OP and off for replies

$
0
0
This is untested. On line 1970 of posting.php find:

Code:

'S_SIGNATURE_CHECKED'=> ($sig_checked) ? ' checked="checked"' : '',
Replace with:

Code:

'S_SIGNATURE_CHECKED'=> ($sig_checked  && ($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_post_id']))) ? ' checked="checked"' : '',

On line 159 of language/en/ucp.php find

Code:

'DEFAULT_ADD_SIG'=> 'Attach my signature by default',
Replace with:

Code:

'DEFAULT_ADD_SIG'=> 'Attach my signature by default to new topics',

If you are using different language files you will need to make edits to them instead. As I said untested but should work.

Statistics: Posted by thecoalman — Mon Jul 22, 2024 2:42 pm



Viewing all articles
Browse latest Browse all 2696

Trending Articles