Last active
December 16, 2016 02:01
-
-
Save philhoyt/efa932256a052d65f769fb10dda0508d to your computer and use it in GitHub Desktop.
Ninja Form Custom Field Template Path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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