• My client asked me to disable the “WooCommerce MailChimp subscription failed” emails since they find them far too noisy. They get a lot of traffic to their site, sometimes with waves of bots which try and sign up random email accounts. They don’t want to be notified via email each and every time this happens, but after looking through the settings screen and the code it does not appear that there is any way to disable these emails. I could filter the admin email to a blank string, but that will just start throwing WP_Errors at the debug log.

    Just curious if you would consider adding this as a plugin setting, to make it easier to opt out of those notifications. Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Saint Systems

    (@saintsystems)

    @dmchale,

    Thanks for your suggestion. Seems easy enough to add a plugin setting allowing you to turn off these notifications. We’ll look at adding this for the next release so be on the lookout!

    In the meantime, you could add a hook into the ss_wc_mailchimp_admin_email filter to send these messages to yourself instead of the client. See example code below:

    
    function override_woocommerce_mailchimp_admin_email( $admin_email ) {
        // Maybe modify $admin_email in some way or just return an email address like below
        return "[email protected]";
    }
    add_filter( 'ss_wc_mailchimp_admin_email', 'override_woocommerce_mailchimp_admin_email' );
    

    [ Signature deleted ]

Viewing 1 replies (of 1 total)
  • The topic ‘Admin doesn’t want failure emails’ is closed to new replies.