Magento如何禁用图像缩放
有谁知道如何禁用 Magento 中的产品图像缩放?
Does anyone know how to disable the product image zoom in Magento?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道如何禁用 Magento 中的产品图像缩放?
Does anyone know how to disable the product image zoom in Magento?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以在模板目录 (/app/design/default/your_theme/template) 中修改 /catalog/product/view/media.phtml。这是输出图像的代码:
第一部分(在 if 子句之后)输出可缩放图像,而“else”部分输出非缩放版本。我认为最简单的解决方案是去掉 if 语句,只保留非缩放版本:
在全新安装的 magento 上就像魅力一样。
You can modify /catalog/product/view/media.phtml inside your template directory (/app/design/default/your_theme/template). This is the code that outputs the image:
The first part (after the if clause) outputs the zoomable image, while the "else" part outputs the non-zoom version. I think the easiest solution is to get rid of the if statement and just leave the non-zoom version:
Works like a charm on a fresh installation of magento.
如果您的图像分辨率较低,则禁用缩放非常有用。对于高清图像尝试使用此插件,这里有一个示例: http ://www.ajax-zoom.com/demo/magento/index.php/chair.html
Disabling the zoom is great if you have low res images. For HD imagaes try to use this plugin, here is an example: http://www.ajax-zoom.com/demo/magento/index.php/chair.html