Magento – Remove Recently Viewed Products in RWD Theme using local.xml

layoutlocal.xmlrwd

I am trying to remove the Recently Viewed Products from sidebar on the new RWD Theme. Please see my local.xml:

<?xml version="1.0"?>
<layout>
    <default>
        <remove name="catalog.compare.sidebar"/>
        <remove name="right.reports.product.viewed"/>
    </default>
</layout>

I have managed to remove the compare sidebar but not the recently viewed. I have manage to do it on the other themes but not on the RWD. I have also checked all the xml files in the layout folder for RWD for the words viewed and reports and nothing comes back. So I get its reverting back to BASE but then if that was the case should the above xml code remove the recently viewed?

Thanks

Best Answer

I figured this out its actually

name="left.reports.product.viewed"

not the 

name="right.reports.product.viewed"

even though it is being displayed in the right column.

Related Topic