Skip to content

Instantly share code, notes, and snippets.

@tuanbbhero
Last active January 28, 2019 03:44
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 tuanbbhero/6243fc5eff9e703994b32efaa69ba4d7 to your computer and use it in GitHub Desktop.
Save tuanbbhero/6243fc5eff9e703994b32efaa69ba4d7 to your computer and use it in GitHub Desktop.
Turn Off WP Mail SMTP by WPForms Notifications in WP-Admin. Insert into Functions.php or use Code Snippets Plugin. Created by BeaverHero.com
add_action('admin_head', 'kl_dismiss_notifications');
function kl_dismiss_notifications() {
echo '<style>
div#setting-error-tgmpa, #update-nag, .update-nag, .updated.caldera_forms {
display: none;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment