Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
536 Visninger

Hi all,


I am new to Odoo and have been trying to build a multi vendor marketplace. All purchases will be for pick up, hence there is no need for the delivery option. Since the checkout procedure is burdensome to customers, this creates friction for the customer. I want to remove this friction.


Has anyone found a way to remove the delivery and address portion of the checkout?


I found a module that might remove the delivery and address portion, but I think it costs $50 every 3 months, so I didn't try it.

Avatar
Kassér
Forfatter

That worked well, thank you.

Bedste svar

You can 'hack' your way around by

  • disabling the 'Shipping Address' option in Settings -> Website -> Section 'Delivery' --> Shipping Address (Let the customer enter a delivery address)

which would affect (renames/removes) the parts in red:


  • hide the Delivery method selection using CSS

For this to work you want to add a CSS rule saying

<style>
#o_delivery_form { display: none !important; }
</style>

This can be added via Website --> Editor --> Theme -> Code Injection "<head> and </body>":


Note that you will still need to have one active and published Delivery Method in Odoo in order to have this work. Otherwise Odoo will prevent your customers from checking out due to a lack of delivery options.

Avatar
Kassér