从购物车中删除运费计算

时间:2013-01-17 02:55:08

标签: magento-1.7

如何从商店的购物车中删除送货计算? 这是网站:tintinportintin.com.br

1 个答案:

答案 0 :(得分:9)

在app / design / frontend / base / default / checkout.xml的第89行,你会发现:

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

此行负责显示该块。您可以将此XML文件复制到您自己的主题并删除此行。

但您也可以使用<checkout_cart_index>句柄删除它。例如,这可以在local.xml中完成。

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

希望它有所帮助!

相关问题