Filipe Ferminiano
Filipe Ferminiano

Reputation: 8791

Remove shipping calculations from cart

How can I remove the shipping calculations from the cart of my store? This is the site: tintinportintin.com.br

Upvotes: 3

Views: 6425

Answers (1)

khoekman
khoekman

Reputation: 1153

On line 89 in app/design/frontend/base/default/checkout.xml you wil find:

<block type="checkout/cart_shipping" name="checkout.cart.shipping" as="shipping" template="checkout/cart/shipping.phtml"/>

This line is responsible for showing that block. You can copy this XML file to your own theme and remove this line.

But you can also use the <checkout_cart_index> handle and remove it. This can be done in local.xml for example.

<checkout_cart_index>
    <remove name="checkout.cart.shipping" />
</checkout_cart_index>

Hope it helps !

Upvotes: 9

Related Questions