Export order
-
The export of vfb pro is not in order of the entries by date.
You can solve this by modifing the admin/class-export.php like the following:After
$entry_data = $vfbdb->get_entries_meta_by_form_id( $form_id, $where );
add this code:
// problem: the array $entry_data is not ordered by ID, so it is not in order of the entries
// extract the “ID” values into a seperate array
$idArray = array_column($entry_data, “ID”);
// sort the original array by ID
array_multisort($entry_data, SORT_ASC, $entry_data);Just wanted to let you know.
- The topic ‘Export order’ is closed to new replies.