Skip Navigation

[Resuelto] Can this be done? Sync fields from a CPT to MailChimp subscriber list and back

The Toolset Community Forum is closed, for technical support questions, please head on to our Toolset Professional Support (for paid clients), with any pre-sale or admin question please contact us here.

Este hilo está resuelto. Aquí tiene una descripción del problema y la solución.

Problem:

I was wondering if I could sync the data entered into these into MailChimp so that I could use these fields with a MailChimp campaign. Then if a email receipent updated their preferences in MailChimp to edit their phone for example, could I then have this information auto sync'd back to the WordPress CPT that it came from.

Solution:

There isn't such a built-in feature within Types plugin or other Toolset plugins, but you can search it in google plugin Directory, for example:

https://wordpress.org/plugins/search/mailchimp+Sync/

Relevant Documentation:

This support ticket is created hace 6 años, 8 meses. There's a good chance that you are reading advice that it now obsolete.
This is the community support forum for Types plugin, which is part of Toolset. Toolset is a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients and people who registered for Types community support can post in it.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

Este tema contiene 2 respuestas, tiene 2 mensajes.

Última actualización por larryB-3 hace 6 años, 8 meses.

Asistido por: Luo Yang.

Autor
Mensajes
#620111

I have a CPT for Owners and a CPT for Renters, each have fields like First Name, Last Name, Email, Phone #, Address, etc. I was wondering if I could sync the data entered into these into MailChimp so that I could use these fields with a MailChimp campaign. Then if a email receipent updated their preferences in MailChimp to edit their phone for example, could I then have this information auto sync'd back to the WordPress CPT that it came from.

#620355

Dear Larry,

There isn't such a built-in feature within Types plugin or other Toolset plugins, but you can search it in google plugin Directory, for example:
https://wordpress.org/plugins/search/mailchimp+Sync/

#620502

Thanks! I will take a look at that. I will probably have to find a developer that can take these CPT fields and sync them to MailChimp. I found this but not sure how to exactly use with Toolset.

There is a filter hook available which allows you send additional data from MailChimp. This allows for greater flexibility as to where you user data is stored..

Here's an example specifying the "MERGETAG" field from a simple user property.

add_filter( 'mailchimp_sync_user_data', function( $data, $user ) {
    $data['MERGETAG'] = $user->field_name;
    return $data;
}, 10, 2 );

El foro ‘Types Community Support’ está cerrado y no se permiten nuevos debates ni respuestas.