Hi @ybrown and @akshay-menariya,
If you want the description field to be imported, you can add the following lines to the DspExportImportModel.php file3
These lines are to be inserted just after line 192.
if(!empty($post->post_content)) {
$custom_post_meta[‘menu-item-description’] = $post->post_content;
}
In my case this allowed me to integrate the description of my menus.
I hope you find this useful, although it may not be the best solution.
Thanks.
Hervé