• Resolved nwisg

    (@nwisg)


    Hello,

    I have Subscribe2 running on two websites.

    The first one I set up shows these digest selections;
    For each Post
    Once Hourly
    Twice Daily
    Once Daily
    Twice Monthly
    Weekly
    Once Monthly

    The second only shows these selections;
    For each Post
    Once Hourly
    Twice Daily
    Once Daily
    Weekly

    Not making much sense they are bot running on the latest ver of WP and the Subscribe2 plug-in. Any ideas why this is would be greatly appreciated.

    http://wordpress.org/extend/plugins/subscribe2/

Viewing 2 replies - 1 through 2 (of 2 total)
  • @nwisg,

    On the first blog you must have set up another cron interval in WordPress – either by doing it yourself or having some other plugin do it automatically for you.

    You can add a 4 weekly interval like this (from the FAQs).

    function add_my_new_sched($sched) {
    $sched[‘my_new’] = array(‘interval’ => 2419200, ‘display’ => ‘Four Weekly’);
    return $sched;
    }
    add_filter(‘cron_schedules’, ‘add_my_new_sched’);

    Thread Starter nwisg

    (@nwisg)

    Interesting, I’ll have to go in and figure out what plug-in makes the difference. I didn’t make any changes. One is on is on my dev.multisite which is the one offering the Monthly option and the other is a normal install.

    Thanks for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Subscribe2] Monthly Digest check box missing’ is closed to new replies.