I use nopCommerce 3.50. I go to Payments under Administration. I see Refunds checked as active for PayPal Direct. How do I disable this to not allow refunds?
You cannot change this through the administration, but should change the source code of the plugin and build it again! You will need to open the PayPalDirectPaymentProcessor.cs file and change the following:
publicbool SupportRefund { get { returnfalse; } }
Then save and build the plugin. Then you should replace the Nop.Plugin.Payments.PayPalDirect.dll file with the newly built one.