Magento – Magento2 move coupon code inside summary

layoutmagento2shopping-cart

I am planing to move the coupon code section inside the summary page,before that i have moved the summary-section under the item list, and moved the cross-sell section next to summary-section.

Now i plan to move the coupon-code section inside the summary section or next to item-list section.

For move inside the summary-section i just used below code

<move element="checkout.cart.coupon" destination="cart.summary"/> 

For move next to order item list section

<move element="checkout.cart.coupon" destination="checkout.cart.items" before="checkout.cart.order.actions" after="checkout.cart.form"/> 
<move element="checkout.cart.coupon" destination="checkout.cart.container" before="cart-items" />

Best Answer

Just add below code in Magento_Checkout\layout\checkout_cart_index.xml in your custom theme :-

<move element="checkout.cart.coupon" destination="cart.summary" after="checkout.cart.shipping"/>

OR

If you want to add before checkout button then add below code :-

<move element="checkout.cart.coupon" destination="cart.summary" after="checkout.cart.totals.container"/>
Related Topic