@krsh333 I was able to update the plugin myself to achieve exporting the description. If you feel comfortable touching PHP code, here is how you can export and import description:
in includes/exporter/data/data-wf-post-columns.php
, add the following to the end of the $columns array before the closing );
:
'user_description' => 'user_description',
(add a comma after ‘roles’)
in includes/importer/data/data-wf-reserved-fields-pair.php
add the following to the end of the $columns array before the closing );
:
'user_description' => 'user_description | user_description',
(add a comma after ‘roles’)
in includes/importer/class-wf-csv-parser.php
, add the following to the end of the $this->user_base_fields array before the closing );
:
'user_description' => 'user_description',
(add a comma after ‘roles’)
in includes/importer/class-wf-customerimpexpcsv-customer-import.php
, add the following after line 618:
$user_description = (!empty($data['user_details']['user_description'])) ? $data['user_details']['user_description'] : '';
and in the same file, in the wp_update_user
array on line 625, add the following to the end of the array:
'description' => $user_description,
(add a comma after ‘user_status’)
Very simple update to include a field that should be supported in the basic version of this plugin. Hopefully they will add it in a future version, but I was on a tight deadline and needed it now.