在 Magento 中显示产品所属的所有类别
我正在构思一个新的 Magento 网站,该网站将包含多个类别的产品。我想知道是否可以在产品详细信息页面上显示产品所属的所有类别。我知道可以获取该类别,但是是否可以显示产品所属的所有类别列表?
例如,衬衫可能包含在衬衫类别中,以及设计师和夏季类别中。理想情况下,我希望能够显示以下内容:
更多来自:
男士>衬衫
男士>设计师>巴纳贝·哈迪
男士>夏天
I am conceptualizing a new Magento site which will have products that are included in several categories. What I am wondering is if I can display all categories a product is in on the product detail page. I know that it is possible to get the category, but is it possible to display a list of all categories which a product belongs to?
For example, a shirt may be included in the Shirts category, as well as in Designers and Summer. Ideally, I would like to be able to display the following:
More from:
Men > Shirts
Men > Designers > Barnabé Hardy
Men > Summer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将为您提供您正在寻找的数据,例如类别的名称、URL 等:
然后只需迭代集合即可,例如
This will get you the data you are looking for such as the category's name, URL, etc:
then just iterate over the collection e.g.
简单的。
Simple.
您可以使用以下代码在商品详情页中显示与所选商品相关的所有类别。
You can use the following code to display all categories related to the selected product in the product detail page.