Magento:使用 PNG 更改默认产品图像
为了替换 Magento 中的默认产品图像,我们必须替换此文件夹中的图像:
skin\frontend\mytheme\default\images\catalog\product\placeholder
3 个文件:
- image.jpgsmall_image
- 有 .jpg
- 缩略图.jpg
我需要用PNG替换这些文件。我可以更改 .jpg
部分的代码在哪里?
In order to replace default product image in Magento, we have to replace images in this folder:
skin\frontend\mytheme\default\images\catalog\product\placeholder
There are 3 files:
- image.jpg
- small_image.jpg
- thumbnail.jpg
I need to replace those files with PNG. Where is the code that I can change the .jpg
part?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在管理中,在“系统”>“配置>目录>产品图片占位符,您可以上传任何您想要的文件。
In the admin, under System > Configuration > Catalog > Product Image Placeholders, you can upload any file you want.
只需在回复中添加信息即可 - 图像最初存储在路径中:bdebela/skin/frontend/base/default/images/catalog/product/placeholder。
名称和尺寸:
Just do add information to the reply - the images are stored originally in the path: bdebela/skin/frontend/base/default/images/catalog/product/placeholder.
Names and sizes:
我已从管理员上传了占位符图像,但仍未显示。我已经从后端清除了缓存,删除了 /media/catalog/product/cache 文件夹,但没有成功。
最后,我通过复制 skin/frontend/default/MY_THEME/images/catalog/product/placeholder 中的新占位符来修复此问题。
其中 MY_THEME 是我当前活动的主题。
I have uploaded placeholder images from admin but still not showing. I have cleared cache from backend, deleted /media/catalog/product/cache folder with no luck.
Finally, I fixed it by copying my new placeholders at skin/frontend/default/MY_THEME/images/catalog/product/placeholder.
where MY_THEME is my currently active theme.