我希望将图像大量导入到magento 1.6.2中,但我在初始测试中注意到我上传的图像也包含在附加视图区域中。意味着我的图像,小图像和缩略图都链接到其他视图。会改变
中的行(792)appcode /核心/法师/目录/型号/转换/适配器/ Product.php
$addedFilesCorrespondence = $mediaGalleryBackendModel->addImagesWithDifferentMediaAttributes(
$product,
$arrayToMassAdd, Mage::getBaseDir('media') . DS . 'import',
false,
false
);
to:
$addedFilesCorrespondence = $mediaGalleryBackendModel->addImagesWithDifferentMediaAttributes(
$product,
$arrayToMassAdd, Mage::getBaseDir('media') . DS . 'import',
false,
true
);
有助于避免必须转到每个产品并检查从其他视图中排除吗?或者cvs导入中是否还需要另一个字段来避免这种情况?