We have corrected the export on our end, because the currency should not be displayed in the price field.
So we removed it from the csv export.
It will be available in the next release.
To correct that problem now, you have to replace:
if($element->$column->currency != '0' ){
$currency = hikashop_get('class.currency');
$square = $currency->format($element->$column->value,$element->$column->currency);
}else{
$square = $element->$column->value;
}
By:
if($element->$column->currency != '0' && JRequest::getVar('from_task','displayResults') == 'displayResults'){
$currency = hikashop_get('class.currency');
$square = $currency->format($element->$column->value,$element->$column->currency);
}else{
$square = $element->$column->value;
}
In the class "massaction" function "displayByType()".
And add:
JRequest::setVar('from_task','exportCsv');
in the _exportCSV() function before the call of the "displayByType" function, you can place it at the top of the function.