Combine multiple fields into one field
add_filter(‘frm_validate_field_entry’, ‘my_custom_validation’, 8, 3); function my_custom_validation( $errors, $posted_field, $posted_value ) { if($posted_field->id == 25){ //change 25 to the ID of the destination field //change the value between the quotes to what should go in-between values $separator = “, “; $_POST[‘item_meta’][25]…Continue reading