Last active
May 30, 2018 20:09
-
-
Save greathmaster/3679ae1381cd4d1a854ae6e3a23224f3 to your computer and use it in GitHub Desktop.
How to do MailChimp MERGE field with ADDRESS type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Address merge types must be handled in a very specific format | |
function my_pmpro_mailchimp_listsubscribe_fields($fields, $user) | |
{ | |
$user_info = get_userdata($user->ID); | |
$new_fields = array( | |
"FNAME" => $user->first_name, | |
"EMAIL" => $user->email, | |
"LNAME" => $user->last_name, | |
"ADDRESS" => array( 'addr1' => $user_info->pmpro_baddress1, | |
'addr2' => $user_info->pmpro_baddress2, | |
'city' => $user_info->pmpro_bcity, | |
'state' => $user_info->pmpro_bstate, | |
'zip' => $user_info->pmpro_bzipcode, | |
'country' => $user_info->pmpro_bcountry) | |
); | |
$fields = array_merge($fields, $new_fields); | |
return $fields; | |
} | |
add_action('pmpro_mailchimp_listsubscribe_fields', 'my_pmpro_mailchimp_listsubscribe_fields', 10, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment