Support » Requests and Feedback » Some plugins were automatically updated, AGAIN

  • sonic1243

    (@sonic1243)


    STOP the notification emails!

    “Some plugins were automatically updated” etc
    I have tried the solutions posted around the web and none of them work! This is getting ridiculous now, please add an option to stop update notification emails!

Viewing 4 replies - 1 through 4 (of 4 total)
  • I have tried the solutions posted around the web and none of them work!

    Which specific solution do you currently have implemented?

    Thread Starter sonic1243

    (@sonic1243)

    Hi, thanks .. using functions.php like this, not working:

    // Disable Update Emails

    add_filter(‘auto_core-update_send_email’, ‘_return_false’);

    add_filter(‘auto_plugin-update_send_email’, ‘_return_false’);

    add_filter(‘auto_theme-update_send_email’, ‘_return_false’);

    // Disable CORE Update Emails Not Working So:

    add_filter( ‘auto_core_update_send_email’, ‘smartwp_disable_core_update_emails’, 10, 4 );

    function smartwp_disable_core_update_emails( $send, $type, $core_update, $result ) {

    if ( !empty($type) && $type == ‘success’ ) {return false;}return true;}

    Thread Starter sonic1243

    (@sonic1243)

    Need a solution to stop the plugin notifications please ……

    Sean

    (@sean-h)

    I have one; disable auto update and do so manually.

    Or, a platform like ManageWP makes it even easier to update several sites all at once. You also have full control over when you get emailed about anything.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.