gpt4 book ai didi

php - Magento 产品详细信息图片尺寸

转载 作者:可可西里 更新时间:2023-11-01 13:20:21 26 4
gpt4 key购买 nike

Magento 1.4

默认产品详细信息图像大小为 265x265。

我们所有的产品图片的高度都可能是宽度的 2 倍,即使我们对它们进行填充使它们成为正方形,265 度也会太小而无法看到图片中的细节,因此我们希望图片更高。

我找到了 media.phtml 文件

我们将如何修改此文件/Magento 以使产品详细信息页面图像为 265W x 530H。

这看起来像显示图像的代码。

<p class="product-image">
<?php
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
echo $_helper->productAttribute($_product, $_img, 'image');
?>
</p>

最佳答案

只需将高度参数也传递给调整大小函数:

<p class="product-image">
<?php
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265, 530).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
echo $_helper->productAttribute($_product, $_img, 'image');
?>
</p>

希望对您有所帮助!

谢谢,乔

关于php - Magento 产品详细信息图片尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2869331/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com