Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save greathmaster/66b25d86d58b3d28271a04242e07641c to your computer and use it in GitHub Desktop.
Save greathmaster/66b25d86d58b3d28271a04242e07641c to your computer and use it in GitHub Desktop.
Send the MERGE field enddate to MailChimp.
function my_pmpro_mailchimp_listsubscribe_fields($fields, $user)
{
$level = pmpro_getMembershipLevelForUser($user->ID);
$enddate = date('Y-m-d', $level->enddate);
$new_fields = array("ENDDATE" => $enddate);
$fields = array_merge($fields, $new_fields);
return $fields;
}
add_action('pmpro_mailchimp_listsubscribe_fields', 'my_pmpro_mailchimp_listsubscribe_fields', 10, 2);
/*
(Optional) Tell PMPro MailChimp to always synchronize user profile updates. By default it only synchronizes if the user's email has changed.
Requires PMPro Mailchimp v2.0.3 or higher.
*/
add_filter('pmpromc_profile_update', '__return_true');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment