Skip to content

Instantly share code, notes, and snippets.

@philhoyt
Last active December 16, 2016 02:01
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 philhoyt/efa932256a052d65f769fb10dda0508d to your computer and use it in GitHub Desktop.
Save philhoyt/efa932256a052d65f769fb10dda0508d to your computer and use it in GitHub Desktop.
Ninja Form Custom Field Template Path
add_filter( 'ninja_forms_field_template_file_paths', 'custom_field_file_path' );
function custom_field_file_path( $paths ){
$paths[] = get_stylesheet_directory() . '/ninja-forms/templates/';
return $paths;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment