19 lines
866 B
XML
19 lines
866 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="website_skip_hide_addresses.hide_wizard" inherit_id="website_sale.wizard_checkout">
|
|
<xpath expr="//div[@id='wizard-step20']" position="attributes">
|
|
<attribute name="t-att-class">'d-none'</attribute>
|
|
</xpath>
|
|
</template>
|
|
<template id="website_skip_hide_addresses.hide_payment" inherit_id="website_sale.payment">
|
|
<xpath expr="//div[@id='shipping_and_billing']" position="attributes">
|
|
<attribute name="t-att-class">'d-none'</attribute>
|
|
</xpath>
|
|
</template>
|
|
<template id="website_skip_hide_addresses.hide_confirmation" inherit_id="website_sale.confirmation">
|
|
<xpath expr="//div[@class='card mt-3']" position="attributes">
|
|
<attribute name="t-att-class">'d-none'</attribute>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|