Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/jenkins/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在“屏幕”上显示面包屑;标有“的产品”;Magento的页面?_Magento_Breadcrumbs - Fatal编程技术网

如何在“屏幕”上显示面包屑;标有“的产品”;Magento的页面?

如何在“屏幕”上显示面包屑;标有“的产品”;Magento的页面?,magento,breadcrumbs,Magento,Breadcrumbs,我不知道如何让面包屑出现在Magento的“产品标签”页面上。我在其他地方都能找到面包屑,包括搜索结果页面。非常感谢您的帮助。将以下版面更新添加到app/design/frontend/default/your_theme/layout/tag.xml文件中,位于: 家 家乡/ 标签 标签产品 我想根据显示的标签进行第二次面包屑更换会更理想,但这需要一些更复杂的修改。如果您感兴趣,请告诉我,我可能会帮助您 <reference name="breadcrumbs"> <

我不知道如何让面包屑出现在Magento的“产品标签”页面上。我在其他地方都能找到面包屑,包括搜索结果页面。非常感谢您的帮助。

将以下版面更新添加到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>