• Resolved infestlithium

    (@infestlithium)


    Hi everyone,

    I was wondering if there was a way to automatically send custom field data from checkout to Mailchimp? We’ve tried adding a custom functions code in the functions.php file but that doesn’t seem to work.

    We want to be able to send Mailchimp custom data so we can segment our email campaigns better. I know we could probably export WooCommerce orders and import them to Mailchimp manually but we want to avoid that as we deal with several orders at varying times of the day.

    Thank you!

Viewing 1 replies (of 1 total)
  • Plugin Author ThemeHigh

    (@themehigh)

    The additional fields created using our plugin are saved in the database as Order Meta. You can use the below function to retrieve the saved order meta value.

    get_post_meta($order->ID, 'field_name', true);

    Please note that $order->ID will be the ID of the order.

    Also, we suggest you to contact the support of MailChimp regarding this. We hope they will be able to help you.

    Thank you!

Viewing 1 replies (of 1 total)
  • The topic ‘Exporting Custom Field Data to Mailchimp?’ is closed to new replies.