designbymerovingi

Bug Fix: Relabel Bank buyCRED Gateway

Jan 26th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. /**
  2.  * Bug FIX
  3.  * Relabel the Bank buyCRED Gateway
  4.  * @version 1.0
  5.  */
  6. function mycred_relable_buycred_gateway( $installed ) {
  7.  
  8.     $installed['bank']['title'] = 'TIGO PESA';
  9.  
  10.     return $installed;
  11.  
  12. }
  13. add_filter( 'mycred_setup_gateways', 'mycred_relable_buycred_gateway' );
Add Comment
Please, Sign In to add comment