• Resolved purityboy83

    (@purityboy83)


    Hi

    default uncheck -> “Notify me via e-mail if anyone answers my comment”

    i want to default value is check

    Can I get help on this part?

    If you let us know, we can modify the source as well.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter purityboy83

    (@purityboy83)

    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

    • This reply was modified 3 years, 6 months ago by purityboy83.
    Plugin Author Arno Welzel

    (@awelzel)

    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!

    Thread Starter purityboy83

    (@purityboy83)

    Hi~!

    I didn’t know if there was a setting
    thank you for your answer.
    Code modifications have returned to their original state.

    Thanks~!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to change notify setting’ is closed to new replies.