我是magento的新手,不知道如何修改文件,实际上我做了所有事情也上传了多张图片但是额外的图片"拇指,小图片没有显示在前端产品视图页面上。只显示基本图像...
请看下面的代码并解决我的问题,为什么图像没有显示在那里..
ViewBag.Role = new SelectList(db.masterroledet_tbl.Where(m => m.IsDeleted == 0).ToList(), "RoleID", "RoleName");
答案 0 :(得分:0)
//尝试下面的代码来显示产品的所有图片。
<?php $_images = Mage::getModel('catalog/product')->load($_product->getId())->getMediaGalleryImages(); ?>
<?php if($_images){?>
<?php $i=0; foreach($_images as $_image){ $i++; ?>
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail', $_image->getFile())->resize(108,90); ?>" alt="<?php echo $this->htmlEscape($_image->getLabel());?>" title="<?php $this->htmlEscape($_image->getLabel());?>" /><?php } ?>
<?php } ?>