Copy multiple field values
add_filter(‘frm_setup_edit_fields_vars’, ‘frm_copy_multiple_field_values_before_edit’, 20, 3); function frm_copy_multiple_field_values_before_edit( $values, $field, $entry_id ) { if ( FrmAppHelper::is_admin() ) { //don’t copy the field value if the entry is edited in the admin area return $values; } $field_pairs = array( //for each pair of…Continue reading