Remove Checkout Buttons from top of Cart page
If you want to remove the Checkout buttons from the top of your Magento Cart page, here are 2 ways to do this .
(1) Remove the checkout buttons using Layout XML.
Add this to a layout XML file:
<checkout_cart_index> <remove name="checkout.cart.top_methods" /> </checkout_cart_index>
(2) Just hide the buttons using CSS
Add this to your Magento store css style sheet:
.checkout-cart-index .title-buttons .checkout-types {display:none}
If you want to remove only Google Checkout and/or Paypal Express buttons from the top of the Magento Cart Page, you can use the following Layout XML
<checkout_cart_index> <reference name="checkout.cart.top_methods"> <action method="unsetChild"><name>checkout.cart.methods.googlecheckout</name></action> <action method="unsetChild"><name>checkout.cart.methods.paypal_express</name></action> </reference> </checkout_cart_index>


