Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save femiyb/373ec2bc5a16e63fbe39b80e209b4c13 to your computer and use it in GitHub Desktop.
Save femiyb/373ec2bc5a16e63fbe39b80e209b4c13 to your computer and use it in GitHub Desktop.
Send the MERGE field enddate to MailChimp.
<?php
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