我正在尝试以编程方式在magento中添加产品。除了图像,一切都有效。
图像已上传并显示在产品页面上。但是,它不会设置为小图像或缩略图。
我使用以下代码,
$fullpath = 'upload/one.jpg';
$product->addImageToMediaGallery($fullpath, 'image', false);
$product->addImageToMediaGallery($fullpath, 'small_image', false);
$product->addImageToMediaGallery($fullpath, 'thumbnail', false);
我尝试下面的代码也没有运气,
$product->addImageToMediaGallery($fullpath, array('image', 'thumbnail', 'small_image'), false, false);
答案 0 :(得分:1)
尝试添加
$product->setImage($fullpath);
$product->setImage($fullpath);
$product->setThumbnail($fullpath);
$product->save();
我没有测试过,但从这里接受了这个想法:http://webkul.com/blog/magento-set-product-default-image-product-images/