如何在“带有标签的产品”上显示面包屑? Magento 中的页面?

发布于 2024-08-28 06:44:13 字数 76 浏览 6 评论 0原文

我不知道如何让面包屑显示在 Magento 的“带有标签的产品”页面上。我在其他地方都能找到面包屑,包括搜索结果页面。任何帮助将不胜感激。

I can't figure out how to get breadcrumbs to show up on the "Products tagged with" page in Magento. I get breadcrumbs everywhere else, including the search results page. Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情栀口红 2024-09-04 06:44:13

将以下布局更新添加到下的 app/design/frontend/default/your_theme/layout/tag.xml 文件中:

<reference name="breadcrumbs">
  <action method="addCrumb">
    <crumbName>Home</crumbName>
    <crumbInfo><label>Home</label><title>Home</title><link>/</link></crumbInfo>
  </action>
  <action method="addCrumb">
    <crumbName>Tags</crumbName>
    <crumbInfo><label>tagged products</label></crumbInfo>
  </action>
</reference>

我想根据显示的标签进行第二次面包屑更改会更理想,但是这个需要一些更复杂的修改。如果您有兴趣,请告诉我,我也许可以帮助您。

Add the following layout update to the app/design/frontend/default/your_theme/layout/tag.xml file under <tag_product_list>:

<reference name="breadcrumbs">
  <action method="addCrumb">
    <crumbName>Home</crumbName>
    <crumbInfo><label>Home</label><title>Home</title><link>/</link></crumbInfo>
  </action>
  <action method="addCrumb">
    <crumbName>Tags</crumbName>
    <crumbInfo><label>tagged products</label></crumbInfo>
  </action>
</reference>

I guess it would be more desirable to have the second crumb change depending on the tag displayed, but this would require some more complex modifications. Let me know if you are interested and I might be able to help you out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文