Skip to content

Instantly share code, notes, and snippets.

@lelandf
Created March 19, 2015 16:14
Show Gist options
  • Save lelandf/07854991da579d2a0b89 to your computer and use it in GitHub Desktop.
Save lelandf/07854991da579d2a0b89 to your computer and use it in GitHub Desktop.
This snippet will disable all Gravity Forms notifications. It is designed to be dropped into a mu-plugins file or theme's functions file. You probably don't need this but it might come in handy for something.
<?php
add_filter( 'gform_notification', 'leland_disable_gf_notifications', 10, 3 );
function leland_disable_gf_notifications( $notification, $form, $entry ) {
$notification = '';
return $notification;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment