Magento – Remove Discount Coupon from Magento ver 1.9

magento-1.9shopping-cart

Does anyone know how i can disable/remove the Discount Coupon from Magento Shopping Cart Page v 1.9 ?

Thanks.

Best Answer

In your theme's local.xml add the following code

<?xml version="1.0" encoding="UTF-8" ?>
<layout>
    <checkout_cart_index>
        <reference name="content">
            <remove name="checkout.cart.coupon"/>
        </reference>
    </checkout_cart_index>
</layout>