콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
697 화면

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.

아바타
취소
작성자

That worked well, thank you.

베스트 답변

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.

아바타
취소