Viewing 1 replies (of 1 total)
  • Plugin Author Gabe Livan

    (@gabelivan)

    @wpshushu indeed, the plugin has some maintenance scripts running. I didn’t know it would be a hassle sometimes. You can either implement the following code within functions.php (e.g., inside your Child theme) or within a custom plugin where you have custom hooks (I found it the most effective as the actual events are not created):

    wp_unschedule_hook('wpacu_daily_scheduled_events');
    wp_unschedule_hook('wpacu_weekly_scheduled_events');

    OR, you can use a plugin such as “WP Control” where you can edit the actual cron event to run at a much later date. If you delete it, it will be re-created later on, since you only delete the actual event, you do not cancel the hook.

    I hope it helps! Let me know if you have further questions!

Viewing 1 replies (of 1 total)
  • The topic ‘plugin crons kept getting added back’ is closed to new replies.