avstudnitz / AvS_FastSimpleImport

Wrapper for Magento ImportExport functionality, which imports products and customers from arrays
306 stars 146 forks source link

Import categories with array of available_sort_by #325

Open cuongdv opened 8 years ago

cuongdv commented 8 years ago

Hi,

We tried import categories with array of available_sort_by. Ex: 'available_sort_by' => array('position', 'name', 'price') But it did not work although Support Nested Arrays for Import is enable.

Could you give us an advise for this case? Thanks

mattwellss commented 8 years ago

@cuongdv did you find a solution for this? It appears that category import explicitly ignores the nested array feature.

(edit: reference)

whizkid79 commented 7 years ago

had the same issue and here is the fix: https://github.com/sitewards/AvS_FastSimpleImport/pull/2 the correct way of specifying the values is by using a string 'position,name,price'. but this breaks the validation, which is fixed in the PR.