Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogdan-mainwp/8ca6eeb71ebcaf9167f926411d303165 to your computer and use it in GitHub Desktop.
Save bogdan-mainwp/8ca6eeb71ebcaf9167f926411d303165 to your computer and use it in GitHub Desktop.
<?php
// Add the following code snippet to the PHP section of the MainWP Custom Dashboard Extension,
// or the functions.php file of the active theme on your Dashboard site.
add_filter( 'mainwp_updatescheck_disable_sendmail', 'mycustom_mainwp_updatescheck_disable_sendmail', 10, 1 );
function mycustom_mainwp_updatescheck_disable_sendmail( $input ) {
return true;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment