I found the answer.
cren_plugin.php
function get_default_checked()
{
return $this->get_cren_option('cren_subscription_check_by_default', false);
}
to
function get_default_checked()
{
return $this->get_cren_option('cren_subscription_check_by_default', true);
}
‘cren_subscription_check_by_default’, false -> true
thanks
Please do not modify the code of the plugin – it will get replaced with the next update and you may have forgotten your modification by then.
Just have a look at the backend settings: Settings -> Comment Reply Notification
There you can just check “Check the subscription checkbox by default” and the checkbox will be checked. There is no need to modify any code.
And by the way – the line of code you modified will check if you have checked this option (cren_subscription_check_by_default) in the backend!
Hi~!
I didn’t know if there was a setting
thank you for your answer.
Code modifications have returned to their original state.
Thanks~!!!