Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Created October 10, 2016 19:53
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 kjohnson/84a8904d5aba28aa3cabe723dc68684b to your computer and use it in GitHub Desktop.
Save kjohnson/84a8904d5aba28aa3cabe723dc68684b to your computer and use it in GitHub Desktop.
<?php
$type = 'email';
add_filter( 'ninja_forms_run_action_type_' . $type, 'my_ninja_forms_run_action_type' );
function my_ninja_forms_run_action_type( $run ) {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment