Title: Syncing with additional source code
Last modified: August 22, 2016

---

# Syncing with additional source code

 *  Resolved [alandc12](https://wordpress.org/support/users/alandc12/)
 * (@alandc12)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/syncing-with-additional-source-code/)
 * Hi there,
 * My site subscribers can subscribe to different levels of the site, I want each
   level to be subscribed to the same list, yet to contain some “SOURCE” data so
   that I may assign them to a specific segment of my list, for this i want to add
   some code. I need to set a hidden “SOURCE” code to the html form, is this possible?
 * Thanks
 * [https://wordpress.org/plugins/mailchimp-sync/](https://wordpress.org/plugins/mailchimp-sync/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Danny van Kooten](https://wordpress.org/support/users/dvankooten/)
 * (@dvankooten)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/syncing-with-additional-source-code/#post-5853668)
 * HI Alan,
 * Sorry for the late reply but we’ve definitely not forgotten about this plugin.
 * We just pushed out version 1.0 of the plugin which include some features and 
   a filter that lets you modify the data that is sent to MailChimp. You can basically
   use it to send anything you want to MailChimp.
 *     ```
       add_filter( 'mailchimp_sync_user_data', function( $data, $user ) {
           $data['WEBSITE'] = $user->user_url;
           $data['SOURCE'] = get_user_meta( $user->ID, 'source', true );
           return $data;
       }, 10, 2 );
       ```
   
 * I hope that helps you in what you’re trying to accomplish! If not, let me know.
   🙂

Viewing 1 replies (of 1 total)

The topic ‘Syncing with additional source code’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/mailchimp-sync_cfeefa.svg)
 * [MC4WP: Mailchimp User Sync](https://wordpress.org/plugins/mailchimp-sync/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mailchimp-sync/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mailchimp-sync/)
 * [Active Topics](https://wordpress.org/support/plugin/mailchimp-sync/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mailchimp-sync/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mailchimp-sync/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Danny van Kooten](https://wordpress.org/support/users/dvankooten/)
 * Last activity: [10 years, 12 months ago](https://wordpress.org/support/topic/syncing-with-additional-source-code/#post-5853668)
 * Status: resolved