Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stevenhoney/1f9014f53ad7ddf24f90caa961ca43ec to your computer and use it in GitHub Desktop.
Save stevenhoney/1f9014f53ad7ddf24f90caa961ca43ec to your computer and use it in GitHub Desktop.
Issue passing dates to datepicker in Ninja Forms
//Customise Datepicker on contact forms
function nf_datepicker_modify_script( $args ){
//for a list of arguments which can be used here, see the options here http://api.jqueryui.com/datepicker/
$args['dateFormat'] = 'mm/dd/yy';
$args['minDate'] = '06/15/15';
$args['minDate'] = '10/15/15';
return $args;
}
add_filter( 'ninja_forms_forms_display_datepicker_args', 'nf_datepicker_modify_script' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment