Title: Payment Method Label
Last modified: April 10, 2019

---

# Payment Method Label

 *  Resolved [blairsawler](https://wordpress.org/support/users/blairsawler/)
 * (@blairsawler)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/payment-method-label/)
 * Hi
 * I am wondering how to change the label in the radio selector when choosing the
   payment method (I want to change the to OFFLINE option to IN_PERSON).
 * Thanks

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [easyregistrationforms](https://wordpress.org/support/users/easyregistrationforms/)
 * (@easyregistrationforms)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/payment-method-label/#post-11415496)
 * Hello [@blairsawler](https://wordpress.org/support/users/blairsawler/),
 * It can be changed using one of our hook:
    add_filter(‘erf_offline_front_label’,’
   change_payment_label’); function change_payment_label($label){ return ‘In Person’;}
 * You can use above script in your functions.php file. This script changes the 
   title for front end. If you want to change it for admin as well, use one more
   hook:
 * add_filter(‘erf_payment_method_titles’,’payment_method_titles’);
    function payment_method_titles(
   $methods){ $methods[‘offline’]= ‘In Person’; return $methods; }
 *  Thread Starter [blairsawler](https://wordpress.org/support/users/blairsawler/)
 * (@blairsawler)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/payment-method-label/#post-11416626)
 * Perfect, thanks so much. If I wanted to change the PayPal to read something like
   Pay Online with PayPal, would it be a similar call?
 * Thanks [@easyregistrationforms](https://wordpress.org/support/users/easyregistrationforms/)
   your support is fantastic!
 *  Plugin Author [easyregistrationforms](https://wordpress.org/support/users/easyregistrationforms/)
 * (@easyregistrationforms)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/payment-method-label/#post-11416739)
 * Yes, Similar should work. For example :
    add_filter(‘erf_paypal_front_label’,’
   change_paypal_label’); function change_paypal_label($label){ return ‘Pay With
   PayPal’; }
 *  Thread Starter [blairsawler](https://wordpress.org/support/users/blairsawler/)
 * (@blairsawler)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/payment-method-label/#post-11417202)
 * Thanks again, that was perfect.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Payment Method Label’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/easy-registration-forms_82b2df.svg)
 * [Easy Registration Forms](https://wordpress.org/plugins/easy-registration-forms/)
 * [Support Threads](https://wordpress.org/support/plugin/easy-registration-forms/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-registration-forms/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-registration-forms/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-registration-forms/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [blairsawler](https://wordpress.org/support/users/blairsawler/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/payment-method-label/#post-11417202)
 * Status: resolved