移除面包屑后,magento无法显示元标题

时间:2015-10-18 11:25:00

标签: php magento magento-1.9

我想删除产品详细信息中的面包屑, 我在local.xml中使用下面的代码

<catalog_product_view>
<reference name="root">
        <remove name="breadcrumbs"/>
    </reference>

</catalog_product_view>

它工作得很好,但有点问题 标题元标题丢失,标题元标题只显示默认magento标题“Magento Commerce”,我不知道我的错误是什么,如果我删除xml代码标题元标题显示此产品的标题

1 个答案:

答案 0 :(得分:0)

您正在引用该页面的标题,即&#39; root&#39;。将XML更改为;

<catalog_product_view>
<reference name="content">
<remove name="breadcrumbs" />
</reference>
</catalog_product_view>