Combine date and time
add_filter( ‘frm_validate_field_entry’, ‘frm_combine_date_time’, 8, 2 ); function frm_combine_date_time( $errors, $posted_field ) { $date_field = 25; // change 25 to the id of your date field $time_field = 26; // change 26 to the id of your time field $combo_field =…Continue reading