Advertisement
verygoodplugins

Untitled

Feb 8th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function fix_country_name_mailchimp( $user_meta, $user_id ) {
  2.  
  3.     foreach( $user_meta as $key => $value ) {
  4.  
  5.         if( $value == 'United States' ) {
  6.             $user_meta[$key] == 'United States of America';
  7.         }
  8.  
  9.     }
  10.  
  11.     return $user_meta;
  12.  
  13. }
  14.  
  15. add_filter( 'wpf_user_update', 'fix_country_name_mailchimp', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement