Show only future dates in a lookup field
add_filter( ‘frm_filtered_lookup_options’, ‘show_future_date’, 10, 2 ); function show_future_date( $options, $args ) { if ( $args[‘field’]->id == 20116 ) { // change 20116 to the ID of the date field in the other form foreach ( $options as $k => $option…Continue reading