Magento – Export a csv with product name and thumbnail image

databaseimportexportmagento-1.9

I know it's possible to export csv's from Magento. Is there a way to get a small image to export in a column and not just the image path or url.

Also, I know _media_image is a field, is that an actual image file or no? Sorry for the naive question.

Or if this isn't possible is there any other way you think it could be done?

Thanks for the help.

Best Answer

You can't export the image in csv product export, only image url to the media file like thumbnail, base image are exported with the product export functionality.

To achieve this you need to download images from this path and put in your CSV.

You can refer below link for more light.

https://stackoverflow.com/questions/34948063/magento-import-product-images-media-via-csv

Related Topic