Skip to content

Instantly share code, notes, and snippets.

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 plugin-republic/f2d5f430332889200e48a8b14dcf1db6 to your computer and use it in GitHub Desktop.
Save plugin-republic/f2d5f430332889200e48a8b14dcf1db6 to your computer and use it in GitHub Desktop.
<?php
/**
* Set the minimum acceptable date to 10 days in the future
*/
function prefix_date_field_params_disable_weekends( $params, $item ) {
$params[] = "beforeShowDay: $.datepicker.noWeekends";
return $params;
}
add_filter( 'pewc_filter_date_field_params', 'prefix_date_field_params_disable_weekends', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment