Magento – Remove Side boxes from magento homepage

homemagento-1.8magento-community

How can I remove these side boxes: "Call Us Toll Free", "Free Shipping", "Now accepting PayPal" ?

enter image description here

Best Answer

You can remove this blocks by their name like by writing the following code in your themes local.xml file like this

<?xml version="1.0" encoding="UTF-8"?>
<layout>
    <default>
        <remove name="paypal.partner.right.logo" />
    </default>
</layout>

for other blocks please find their name from xml file and use like above.

Related Topic