0

Magento Data Flow: Exclude All Images on Magento CSV Import

April 3, 2012 Magento

Magento Data Flow: Exclude All Images on Magento CSV Import

  You can look at appcode/core/Mage/Catalog/Model/Convert/Adapter/Product.php and change near line 701:   $mediaGalleryBackendModel->addImagesWithDifferentMediaAttributes ($product, $arrayToMassAdd, Mage::getBaseDir(‘media’) . DS . ’import’, false,  false); Replace with: $mediaGalleryBackendModel->addImagesWithDifferentMediaAttributes ($product, $arrayToMassAdd, Mage::getBaseDir(‘media’) . DS . ’import’, false,  true); This code will be excluding all images automatically when you are importing product through Magento bulk import feature using csv template. Good luck and try it.