Reputation: 669
I'm developing a Magento store and I imported some products, but in these products there were more than just one image and when I imported the products just one came with, now I need to update all the products with the images left, somebody knows how to do it in some quick mode?
Thanks!
Upvotes: 0
Views: 1721
Reputation: 7689
Step 1: Export All Products
When the process is complete,you can find the exported CSV file in the following location on the server:
[magento-install-dir]/var/export/export_all_products.csv
The CSV data appears in the spreadsheet as rows of product records organized into columns of attributes, with the Attribute Code in the header of each column.
Step 2: Copy the Product Images to the Server
The CSV file contains a path to each product image, but the actual image files must be uploaded to the server. To make the images available to import, place them in the media/import directory.
[magento-install-dir]/media/import Use your SFTP utility to copy the product images that you want to import to the media/import folder.
Step 3: Edit the CSV File
Edit image, small_image, thumbnail columns as you need.
Magento creates a directory structure of product image files that is organized alphabetically. You can see that path before each image file name in the CSV data. However, when you import images, you must never include that path before the file name. The only thing you have to do is to enter a forward slash before the file name of each image that you want to import. Magento takes care of the rest. For this example, we need to add the three image files that were uploaded to the media/import folder.
/hdb005_HOTP_600.jpg
/hdb005_MARM
/hdb005_SALM_600.jpg
Step 4: Import the Products
For more details check this out:
http://merch.docs.magento.com/ce/user_guide/content/store-operations/dataflow.html
Upvotes: 3