0
我不知道如何讓麪包屑出現在Magento的「帶標籤的產品」頁面上。我在其他地方都會收到麪包屑,包括搜索結果頁面。任何幫助將不勝感激。如何在Magento的「帶標籤的產品」頁面上顯示麪包屑?
我不知道如何讓麪包屑出現在Magento的「帶標籤的產品」頁面上。我在其他地方都會收到麪包屑,包括搜索結果頁面。任何幫助將不勝感激。如何在Magento的「帶標籤的產品」頁面上顯示麪包屑?
以下佈局更新添加到應用程序/設計/前端/默認/ your_theme /佈局/ tag.xml文件下<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>
我想這將是更希望有第二根據顯示的標籤,碎屑會發生變化,但這需要進行一些更復雜的修改。讓我知道你是否感興趣,我可能會幫助你。