Reputation: 309
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
Reputation: 314
There are 2 ways of doing that:
Add the service as a cross-sell product in the checkout from Magento backend. You don't need any programming knowledge for that.
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
Reputation: 539
Add custom option with product as checkbox. Then you will use this custom option during checkout.
Upvotes: 0