禁用/删除“估计运费和税金” Magento 1.9


15

有人在乎如何删除“购物车”页面上的“运费和税费”选项吗?

Answers:


37

在您的local.xml文件中,添加以下内容。这应该删除该块。

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

值得指出的是,Delphin的解决方案有效,但是,它不像我的那样“更新友好”,因为它希望您在本地主题中拥有一个checkout.xml副本,并且当您升级时,它可能会更改。会缺少更新。
Douglas Radburn 2014年

谢谢。但是这个文件在哪里?
Mave

/app/design/frontend/your_package/yourtheme/layout/local.xml
Douglas Radburn

谢谢。是/ app / design / frontend / default / MAG090172 / layout中的
tempmela.xml吗?

1
local.xml不存在,您必须创建它(它包含布局升级,并且显然空存储没有任何存储)。
Pronto 2014年

7

选中此复选框,然后放入主题的local.xml文件

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

4

从下面的文件中删除以下代码。

app / design / frontend / your_package / yourtheme / layout / checkout.xml

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

最后,在管理面板中清除缓存。


切勿从布局xml文件中删除任何内容,请在local.xml文件中删除。
Ashwani Panwar '18
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.