Reputation: 141
In the beginig, I'm very new in this theme. So, I have about 1000 items' images named as .jpg and I have csv-file with items' details. I can import the list of items without any problems in my prestashop 1.6.0.9, but how can I connect csv-import with that group of images which called-by-reference connected with reference of items inside of CSV-file? If I add the image by hand into item I see it as /img/p/{1}{2}{3}.jpg if the reference number as 123 but I don't understand where this settings are (perhaps mod_rewrite issue) and how to make import images automatically. If you have the best practices of that or can image about I say, please give me any ideas what I have to do. Thank you all for any help!
Upvotes: 0
Views: 7599
Reputation: 519
In prestashp CSV import you can finde product import simple file like this
Where http://localhost/prestashop/img/p/2/3/23.jpg you can change to link of you needed image like link below
You can use more than one image. For this you need separate them by coma
Upvotes: 0
Reputation: 940
The CSV import function allows you to import images. You just need to specify the image URLs, comma seperated, in the CSV and Prestashop will import the images from those URLs in the proper file location.
Upvotes: 1
Reputation: 11
The /img/p/{1}{2}{3}.jpg is when the image is treated by Prestashop, you don't need to do that to import your pictures. Just complete your CSV file with the proper image URL. Ex : http://www.exemple.com/images/mypicture.jpg Prestashop will automatically change it to the p/1/2/1/x.jpg
Upvotes: 1