• Resolved Connection Graphics

    (@connectiongraphics)


    Is there anyway to bring the Event ID with their ‘Name’ and ‘Email’? so that you can connect which Event they booked for?

Viewing 1 replies (of 1 total)
  • Plugin Contributor Lap

    (@lapzor)

    You can write some custom code to pick up the fields and translate the post values to MailChimp fields, e.g.:

    add_filter( ‘mc4wp_integration_events-manager_data’, function( $data ) {
    $data[‘MC_FIELD_NAME_FOR_EVENT_ID’] = $_POST[’em_id’];
    return $data;
    });

    This example expects the fieldname in MailChimp list to be “MC_FIELD_NAME_FOR_EVENT_ID” and the field name in event manager to be “em_id”, please replace those with the correct names.

    Hope that helps. If you have any questions, please let us know!

Viewing 1 replies (of 1 total)

The topic ‘Events Manager Integration Question’ is closed to new replies.