Hi,
It looks like you have a product without category.
In the file "administrator/components/com_hikashop/views/product/tmpl/export.php" please replace around the line 114:
$parent_id = $categories[0]->category_parent_id;
$data[] = str_replace(array('"',',',';'), array('""','\\,','\\;'), $this->categories[$parent_id]->category_name);
By:
if(isset($categories[0]->category_parent_id)){
$parent_id = $categories[0]->category_parent_id;
$data[] = str_replace(array('"',',',';'), array('""','\\,','\\;'), $this->categories[$parent_id]->category_name);
}else{
$data[] = '';
}
Regards,