Domanda

I have exported all products from Import/Export >> Dataflow profiles.

but products gallery images are not exported in csv file.

Is there any setting in magento?

È stato utile?

Soluzione

Its version issue:

Check these two files you will get answer:

app/code/core/Mage/Catalog/Model/Convert/Adapter/Product.php

app/code/core/Mage/Catalog/Model/Convert/Parser/Product.php

This code is missing in your version:

$rowMediaGallery = array(
                    '_media_image'          => $image['file'],
                    '_media_lable'          => $image['label'],
                    '_media_position'       => $image['position'],
                    '_media_is_disabled'    => $image['disabled']
                );
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top