Hey all,
Just seeing this topic bubble up now but since yesterdays update, you can do this using a filter. We’re still working on the interface for this, but that’s a somewhat harder issue to tackle.
Right now, the following snippet in your theme its functions.php
will send the user website URL to the MailChimp “WEBSITE” field.
add_filter( 'mailchimp_sync_user_data', function( $data, $user ) {
$data['WEBSITE'] = $user->user_url;
return $data;
}, 10, 2 );
You get full access to the User object which basically lets you do anything (fetch info from WooCommerce customer meta, etc..).
In the meantime, we’ll work on further improving the plugin! ??