Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
529 Prikazi

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
Opusti
Avtor

That worked well, thank you.

Best Answer

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
Opusti