Viewing 1 replies (of 1 total)
  • Plugin Author Danny van Kooten

    (@dvankooten)

    Hi Miles,

    To send more BuddyPress registration form fields to MailChimp, you will need to tell the plugin which form fields to send to which MailChimp list field.

    To do this, you can hook into the mc4wp_integration_buddypress_merge_vars filter in PHP code. Something like this:

    add_filter( 'mc4wp_integration_buddypress_merge_vars', function( $data ) {
       $data['MC_FIELD'] = $_POST['buddypress_form_field'];
       return $data;
    });

    Hope that helps. If not, let me know!

Viewing 1 replies (of 1 total)
  • The topic ‘Data synchronised with BuddyPress registration forms’ is closed to new replies.