显示 Magento 类别图像
一般来说,顶部菜单会列出子类别的名称,我想列出子类别的图像。任何人都可以建议 php 代码。
谢谢
Generally, the top menu will list out sub-category's name, I want to list out sub-category's image. Can anyone advise the php code.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以通过 config.xml 将附加属性添加到前端类别属性加载列表中来完成:
只需将
[attribute_code]
替换为图像属性代码(也许在您的情况下它是image
),然后您将能够通过
$category->getImage()
访问类别图像,您也可能需要覆盖Mage_Catalog_Block_Navigation
块以进行自定义 html 格式您的菜单。完成此自定义后,不要忘记清理缓存并重建平面类别索引(如果使用)。
It can be done by adding additional attribute into frontend categories attributes load list via config.xml:
Just replace
[attribute_code]
with image attribute code (maybe in your case it isimage
)and then you will be able access category image via
$category->getImage()
, also it is possible that you will need to overrideMage_Catalog_Block_Navigation
block for custom html formating of your menu.When you complete this customization, don't forget to clean cache and rebuild flat categories index (if it is used).