Magento2移动块

时间:2015-08-07 13:43:59

标签: magento2

我尝试更换默认折扣块。不幸的是,块总是位于容器的底部。我无法将其移动到默认的块位置。

我的xml -

    <?xml version="1.0"?>
    <!--
    /**
     * Copyright © 2015 Magento. All rights reserved.
     * See COPYING.txt for license details.
     */
    -->
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
    <body>
        <remove name="checkout.cart.coupon"/>
        <referenceContainer name="cart.discount">
            <block class="{namespace}\Coupons\Block\Coupon" name="checkout.cart.coupon2" as="sadasdasd" template="test.phtml"/>
        </referenceContainer>
        <move element="cart.discount" destination="checkout.cart.container" before="checkout.cart.order.actions.gift_options" />
    </body>
    </page>

结果屏幕 - enter image description here

1 个答案:

答案 0 :(得分:0)

我认为checkout.cart.order.actions.gift_options不是checkout.cart.container的直接子项,所以&#39;之前&#39;条款没有找到你想要的位置,并且是默认为“最后一个孩子”。作为默认行为。