Magento在描述中显示当前商品图片

2,009 人次阅读
没有评论

共计 661 个字符,预计需要花费 2 分钟才能阅读完成。

打开你的当前模板文件中的:template\catalog\product\view\ description.phtml
[php]
<?php $_description = $this->getProduct()->getDescription(); ?>
<?php if ($_description): ?>
<?php echo $this->helper(‘catalog/output’)->productAttribute($this->getProduct(), $_description, ‘description’) ?>
<?php if (count($this->getProduct()->getMediaGalleryImages()) > 0): ?>

<ul>
<?php foreach ($this->getProduct()->getMediaGalleryImages() as $_image): ?>
<li>
<img src="<?php echo $this->helper(‘catalog/image’)->init($this->getProduct(), ‘thumbnail’, $_image->getFile())->resize(500); ?>" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" />
</li>
<?php endforeach; ?>
</ul>

<?php endif; ?>
<?php endif; ?>
[/php]
你可以修改图片的尺寸以配合你的页面宽度。

正文完
 0