0

我是一名使用 Magento 1.7 的新 Magento 开发人员。我已阅读设计指南,因此尝试从右侧边栏中删除产品比较内容块。我在 /blank_template/layout/catalog.xml 中注释了这个块(其中 'blank_template' 是我在管理员中启用的新空白模板的名称)。请参阅下面的代码片段。

<!--
Default layout, loads most of the pages
-->

    <default>

        <!-- Mage_Catalog -->
        <reference name="top.menu">
            <block type="catalog/navigation" name="catalog.topnav" template="catalog/navigation/top.phtml"/>
        </reference>
        <reference name="left">
            <block type="core/template" name="left.permanent.callout" template="callouts/left_col.phtml">
                <action method="setImgSrc"><src>images/media/col_left_callout.jpg</src></action>
                <action method="setImgAlt" translate="alt" module="catalog"><alt>Our customer service is available 24/7. Call us at (800) DEMO-NUMBER.</alt></action>
                <action method="setLinkUrl"><url>checkout/cart</url></action>
            </block>
        </reference>
        <reference name="right">
        <!--
            <block type="core/template" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
            <block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml"/>
        --> 
            <remove name="catalog.compare.sidebar"/>
        </reference>
        <reference name="footer_links">
            <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
        </reference>

    </default>

我不明白为什么我的目标网页上仍然可以看到产品比较块?您可以在此处查看登录页面:http ://rewards.duxter.net 。我已禁用所有 Magento 缓存。根据模板路径提示,这是要修改的正确文件。谁能解释为什么我的代码不起作用?太感谢了!

4

1 回答 1

0

即使缓存已被禁用,进入 var/cache 并删除任何现有目录。我们经常在我们的开发和测试站点(两者都禁用缓存)上遇到类似的怪异 Magento 缓存行为。

于 2012-05-26T14:02:26.280 回答