Hi,
Great, I found the problem.
Change the code:
$array = $this->_separate($product->$name);
if(count($array) != count($files)) continue;
$key = 'file_'.$var;
foreach($files as $k => $file){
$files[$k]->$key = $array[$k];
}
to:
$this->_separate($product->$name);
if(count($product->$name) != count($files)) continue;
$key = 'file_'.$var;
foreach($files as $k => $file){
$files[$k]->$key = $product->{$name}[$k];
}
in the file administrator/components/com_hikashop/helpers/import.php and that will fix the problem. We'll include the fix in next version of HikaShop.