Viewing 1 replies (of 1 total)
  • Plugin Author EverAccounting

    (@everaccounting)

    Hello @agstudio

    Just wanted to say a quick thank you for being our valued customer. We take all customer inquiries, requests, and comments seriously and do our best to help in whatever way possible.

    This filter just returns an array. So you can add payment methods in that array.

    Here’s what you are in need of.

    function add_additional_payment_methods( $payment_methods ) {
       // add your new payment method. Suppose it is paypal
       $payment_methods['paypal'] = __('Paypal','wp-ever-accounting');
       return $payment_methods;
    }
    add_filter('eaccounting_payment_methods','add_additional_payment_methods');
    
    Regards
    Team Ever Accounting
Viewing 1 replies (of 1 total)
  • The topic ‘Filter Payment Methods’ is closed to new replies.