Comments 1AYMX started the conversationSeptember 24, 2023 at 10:59amHello,is there any way to add a costum fee for a payment method like PayPal? In the dynamic rools there is only Payment Method Discount. 2,218WebWizards repliedSeptember 25, 2023 at 6:29amHi there!Thank you for purchasing our plugin,Yes, to add a surcharge for a particular method, you can create a discount rule, but enter a negative value (E.g. -10) in the dynamic rule. For example, here is a 20% surcharge rule for paying with COD: And this is what it looks like on the frontend: Let me know if I can help with anything, or if you have any questions, Kind regards, Stefan1 Like 1AYMX repliedSeptember 25, 2023 at 9:33amHi Stefan,Thank you for your rebly,This works good but is there any way to remove or edit the badge "surcharge" on the checkout page without CSS?Attached files: Capture.PNG1 Like 2,218WebWizards repliedSeptember 25, 2023 at 11:40amYes, you can change that by adding this PHP code snippet to the site: add_filter('b2bking_text_payment_method_discount', function($text, $percent){ $text = 'replace with another text'; }, 10, 2); It allows you to replace the surcharge text with anything else.A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/1 Like Sign in to reply ...
Hello,
is there any way to add a costum fee for a payment method like PayPal? In the dynamic rools there is only Payment Method Discount.
Hi there!
Thank you for purchasing our plugin,
Yes, to add a surcharge for a particular method, you can create a discount rule, but enter a negative value (E.g. -10) in the dynamic rule.
For example, here is a 20% surcharge rule for paying with COD:
And this is what it looks like on the frontend:
Let me know if I can help with anything, or if you have any questions,
Kind regards,
Stefan
Hi Stefan,
Thank you for your rebly,
This works good but is there any way to remove or edit the badge "surcharge" on the checkout page without CSS?
Attached files: Capture.PNG
Yes, you can change that by adding this PHP code snippet to the site:
It allows you to replace the surcharge text with anything else.
A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/