duangao8359 2014-09-25 13:16
浏览 30

如何在Magento中为产品添加其他图像

I can add an image to a product during creating using the following script. However, I'm having trouble loading a product and add additional image to the product media gallery. Do I have to delete the product media gallery and readd all the images at once? It's one image per row in a csv file.

public function addImage($product, $image)
{
    $imagePath = $this->downloadImage($image);
    $product->setMediaGallery(array('images' => array(), 'values' => array()));
    if (is_file($imagePath)) {
        $product->addImageToMediaGallery($imagePath, array('image', 'small_image', 'thumbnail'), false, false);
    }
}
  • 写回答

2条回答 默认 最新

  • duanlu1950 2014-09-25 15:18
    关注

    Why are you using a script to add images? Adding images in magento can be easily done via the admin interface.

    Just login to the admin panel, Catalog > Manage Products > Edit Product > Images (on left panel).

    评论

报告相同问题?

悬赏问题

  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法