adams
adams

Reputation: 309

Magento Add extra fee in checkout

I want to add a checkbox in the checkout for customer to click if they want an extra service and if they click, an extra fixed fee must be added to the subtotal.

How can I add the fixed fee when the customer select the checkbox?

Thanks

Upvotes: 0

Views: 1160

Answers (2)

WEBSHOT
WEBSHOT

Reputation: 314

There are 2 ways of doing that:

  1. Add the service as a cross-sell product in the checkout from Magento backend. You don't need any programming knowledge for that.

  2. Build a small custom module for adding an extra fee in the checkout process. In this case you need php and Magento backend development knowledge. See this Github reference: https://github.com/magentix/Fee

Upvotes: 1

Santosh Patel
Santosh Patel

Reputation: 539

Add custom option with product as checkbox. Then you will use this custom option during checkout.

Upvotes: 0

Related Questions