Magento Programaticallly添加产品,图像未被选为小图像

时间:2015-11-01 17:52:26

标签: php magento

我正在尝试以编程方式在magento中添加产品。除了图像,一切都有效。

图像已上传并显示在产品页面上。但是,它不会设置为小图像或缩略图。

在管理员后端,看起来像这样, enter image description here

我使用以下代码,

$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);

1 个答案:

答案 0 :(得分:1)

尝试添加

$product->setImage($fullpath);
$product->setImage($fullpath);
$product->setThumbnail($fullpath);
$product->save();

我没有测试过,但从这里接受了这个想法:http://webkul.com/blog/magento-set-product-default-image-product-images/