Magento – Remove Compare Products

comparemagento-1.9

I am using theme254k in Magento 1. I would like to remove Compare Products section of side bar of Category Page. How can I do that ??

I found below code in catalog.xml

<default>
        <!-- Mage_Catalog -->
        <reference name="right">
            <!--<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 (555) 555-0123.</alt></action>
                <action method="setLinkUrl"><url>checkout/cart</url></action>
            </block>-->
        </reference>
        <reference name="left">
            <block type="catalog/product_compare_sidebar" after="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
            <block type="core/text_list" name="side.menu" as="sideMenu" translate="label" before="-">
                <label>Navigation Bar</label>
                <block type="page/html_topmenu" name="catalog.topnav2" template="page/html/sidemenu.phtml"/>
            </block>

        </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>
        <block type="catalog/product_price_template" name="catalog_product_price_template" />
    </default>

enter image description here

I removed below code from above code

<block type="catalog/product_compare_sidebar" after="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>

But Compare Product is not removed.

enter image description here

Best Answer

there are many ways, simply use following from page where you want to remove

app/code/design/YOUR_PACKAGE/YOUR_THEME/layout/local.xml

<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_category_layered>
<reference name="left">
          <remove name="catalog.compare.sidebar" />

     </reference>
</catalog_category_layered>
</layout>
Related Topic