-- HikaShop version -- : 2.3.4
When you create Mass action for category export, csv file has only two columns:
parent_category, categories
Bug is also reported
here
.
In file administrator\components\com_hikashop\classes\massaction.php on line 2264 call to
$massaction->organizeExportColumn() remove all csv columns from $params->action and replace them with 2 columns mentioned above.
The code in question is on line 197:
unset($action['category']);
When I comment out this line, export works as expected.
There are also 2 notices "Creating default object from empty value" in this file on lines 224 and 235, because
$types['parent_category']
and
are not set.