Magento – Add payment specific fee in Magento2

magento2payment-methods

How can we add extra fee on Cash on delivery payment method in magento2.
I tried to convert Phoenix COD in magento2 but not getting the result.

Best Answer

You can try with MSP_CashOnDelivery module: https://github.com/magespecialist/m2-MSP_CashOnDlivery

It add an additional Cash On Delivery payment method that allows you to load a csv configuration file, just like the Table Rate shipping, and set the additional fee.

Currently I found some bug, but it worth a try.

To install it via composer:

$ composer require msp/cashondelivery
$ composer update
$ php bin/magento module:enable MSP_Common
$ php bin/magento module:enable MSP_CashOnDelivery
$ php bin/magento setup:upgrade
$ php bin/magento cache:flush
Related Topic