Black out weekends
add_filter(‘frm_selectable_dates’, ‘frm_black_out_weekends’, 10, 2); function frm_black_out_weekends( $selectable, $args ) { if ( $args[‘field’]->field_key == ‘pcm7rl3‘ ) { //replace pcm7rl3 with your field key $selectable = ‘(day != 0 && day != 6)’; //where 0 & 6 are the days of…Continue reading