• Resolved kelliedp

    (@kelliedp)


    Hi –

    I am reviewing scheduled actions – and it seems that the abandoned cart plugin is creating quite a few jobs for sending emails at the same time – from what I can see three or four are pending, and then when completed there are at least four jobs completed at the same time for send email.

    I do not have any emails setup to send, as we use the plugin to review abandoned carts only – we do not send emails.

    • how can I stop multiple scheduled actions from running at the same time?
    • Can i stop the scheduled actions completely given no emails are being sent at all anyway?
Viewing 1 replies (of 1 total)
  • Plugin Support priyankajagtap

    (@priyankajagtap)

    Hi @kelliedp,

    Thank you for reaching out.

    Even if reminder emails are not configured, the plugin may still create scheduled actions related to the abandoned cart email process by default.

    If you are using the plugin only for tracking/reviewing abandoned carts and do not want these scheduled email actions to run, you can add the following code snippet to your active theme’s functions.php file or via a Code Snippets plugin:

    add_action( 'init', function() {
        if ( function_exists( 'as_unschedule_all_actions' ) ) {
            as_unschedule_all_actions( 'woocommerce_ac_send_email' );
        }
    });

    This will remove all scheduled actions related to abandoned cart reminder emails.

    Please add the snippet and then monitor the Scheduled Actions section again to check whether the multiple email jobs stop getting created.

    Let us know how it goes or if you need any further assistance.


    Regards,
    Priyanka Jagtap

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.