Hello,
I need to reload the products list every night from a CSV file. I managed to build a CSV file that can generate categories under "Product category", but I don't know how to achieve that for a category under Root, using only data provided in the CSV file directly.
In other words, the following import works, if category "Size" has been previously defined in the back-end (In this case it has the ID #167):
product_code;parent_category;categories;images;product_manufacturer_id;product_name;product_msrp;price_value;product_description
;"Product category";"Cyclo Cross";"";"";"";"";"";""
;"Product category";"E-Bikes City";"";"";"";"";"";""
;"Product category";"E-Bikes MTB";"";"";"";"";"";""
;"Product category";"Fitness";"";"";"";"";"";""
;"Product category";"Full Suspension All Mountain";"";"";"";"";"";""
;"Product category";"Full Suspension Cross Country";"";"";"";"";"";""
;"Product category";"Full Suspension Enduro";"";"";"";"";"";""
;"Product category";"Full Suspension Trail";"";"";"";"";"";""
;"Product category";"Hardtails 26";"";"";"";"";"";""
;"Product category";"Hardtails 27.5";"";"";"";"";"";""
;"Product category";"Hardtails 29";"";"";"";"";"";""
;"Product category";"Road";"";"";"";"";"";""
;"Product category";"Single Speed";"";"";"";"";"";""
;"Product category";"Trekking / City";"";"";"";"";"";""
;"Product category";"Women";"";"";"";"";"";""
;"Product category";"Youth / Kids";"";"";"";"";"";""
;"167";"53 p";"";"";"";"";"";""
"13326053";"";"Trekking / City;53 p";"133260.jpg";"Kettler";"TRAVELLER 9.3 LITE ";"1399.00";"1199.00";"<ul><li>size: 53</li><li>year: 2013</li><li>speeds: 30</li><li>frame: Aluminium light 7005-K1</li><li>color: brown </li><li>fork: Suntour Nex 4610</li><li>derailleur_front: Shimano Deore</li><li>derailleur_rear: Shimano SLX</li><li>shifter: Shimano SLX</li><li>brake: Tektro Scheibenbremse DRACO, hydraulisch</li><li>chainwheel: Shimano FCT 551</li></ul>"
"13411145";"";"E-Bikes City";"134111.jpg";"Kettler";"Obra Ergo";"3599.00";"3199.00";"<ul><li>size: 45</li><li>year: 2014</li><li>speeds: 8</li><li>color: BASALT </li><li>derailleur_rear: Shimano Nexus</li><li>motor: Panasonic Center Motor CM 214</li><li>battery: 540 Wh</li></ul>"
Is it possible to generate the category "Size" directly in the CSV, with something like
;"0";"Size";"";"";"";"";"";""
?
Thanks