Skip to content
Snippets Groups Projects
Commit ea51b6b0 authored by Jeremy Kersten's avatar Jeremy Kersten
Browse files

[FIX] website_sale: move promo code input after total

Right column has been removed to have a clean checkout
parent 823a1aa2
No related branches found
No related tags found
No related merge requests found
......@@ -1008,18 +1008,6 @@
</form>
</template>
<template id="reduction_code" inherit_id="website_sale.cart" active="False" customize_show="True" name="Promo Code">
<xpath expr="//div[@id='right_column']" position="inside">
<h4>Promo Code</h4>
<p>
Have a promo code? Fill in this field and apply.
</p>
<t t-call='website_sale.coupon_form'>
<t t-set='redirect'>/shop/cart</t>
</t>
</xpath>
</template>
<template id="checkout">
<t t-call="website.layout">
<t t-set="additional_title">Shop - Checkout</t>
......@@ -1540,6 +1528,20 @@
</div>
</template>
<template id="reduction_code" inherit_id="website_sale.total" active="False" customize_show="True" name="Promo Code">
<xpath expr="//div[@id='cart_total']" position="after">
<div class='col-md-offset-6 col-md-6'>
<h4>Promo Code</h4>
<p>
Have a promo code? Fill in this field and apply.
</p>
<t t-call='website_sale.coupon_form'>
<t t-set='redirect'>/shop/cart</t>
</t>
</div>
</xpath>
</template>
<template id="payment_confirmation_status">
<div class="oe_website_sale_tx_status" t-att-data-order-id="order.id">
<div t-att-class="'panel %s' % (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment