在弹出窗口中放大后,我无法找到更改产品图库图像大小的方法。目前它们被Magento自动调整为600x600分辨率,但我希望它们以更高的分辨率(1000x1000)显示。
这是我网站上的一个例子:
产品图库:
http://www.finestlighters.com/en/st-dupont-xtend-maxijet-007-casino-royale-chrome.html
和放大图片
http://www.finestlighters.com/en/catalog/product/gallery/id/109/image/2305/
我正在使用Magento 1.7.0.2。
提前感谢您的帮助
答案 0 :(得分:0)
您可以通过编辑文件app/design/frontend/package/theme/template/catalog/product/view/media.phtml
来更改此设置
你会在哪里找到像 -
$_imageUrl = $this->helper('catalog/image')
->init($_product, 'image', $_image->getFile())
->keepFrame(false)
->constrainOnly(true)
->resize(600);
更改resize()
中的值以调整所需重新分辨率的图像