在结算步骤magento期间更改产品数量

时间:2016-07-08 09:15:25

标签: magento billing

我已经开发了一个模块,在结帐的结算步骤中,必须更改已经在购物车中的虚拟产品的数量。在该步骤中填写结帐的结算步骤的客户很高兴能够通过输入字段更改订购数量。有人知道怎么做吗?提前谢谢!

1 个答案:

答案 0 :(得分:0)

我认为您必须使用其他解决方案,因为您可以在结帐时显示购物车右侧边栏或使用第三方免费扩展程序。

https://www.iwdagency.com/extensions/one-step-page-checkout-m1.html

要在右侧边栏显示:

app/design/frontend/YOURPACKAGE/YOURTHEME/layout/local.xml
<checkout_onepage_index translate="label">
    <reference name="right">
        <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
            <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
            <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
            <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
            <block type="core/text_list" name="cart_sidebar.extra_actions" as="extra_actions" translate="label" module="checkout">
                <label>Shopping Cart Sidebar Extra Actions</label>
            </block>
        </block>
    </reference>
</checkout_onepage_index>