Title: Filter Payment Methods
Last modified: June 28, 2021

---

# Filter Payment Methods

 *  Resolved [agstudio](https://wordpress.org/support/users/agstudio/)
 * (@agstudio)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/filter-payment-methods/)
 * How to add new Payment Methods with `eaccounting_payment_methods` filter?

Viewing 1 replies (of 1 total)

 *  Plugin Author [EverAccounting](https://wordpress.org/support/users/everaccounting/)
 * (@everaccounting)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/filter-payment-methods/#post-14614883)
 * Hello [@agstudio](https://wordpress.org/support/users/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.

 * ![](https://ps.w.org/wp-ever-accounting/assets/icon.svg?rev=3191770)
 * [Ever Accounting - Accounting & Invoicing Solution for Small Businesses](https://wordpress.org/plugins/wp-ever-accounting/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-ever-accounting/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-ever-accounting/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-ever-accounting/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-ever-accounting/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-ever-accounting/reviews/)

## Tags

 * [filter](https://wordpress.org/support/topic-tag/filter/)

 * 1 reply
 * 2 participants
 * Last reply from: [EverAccounting](https://wordpress.org/support/users/everaccounting/)
 * Last activity: [4 years, 11 months ago](https://wordpress.org/support/topic/filter-payment-methods/#post-14614883)
 * Status: resolved