Add WordPress User Fields (Mailing Lists Page, Step #3)
-
I’m wondering how to add additional User Fields to sync over to MailChimp.
I have the MailChimp fields added on a random SignUp form (unused in reality, but it’s how sync-able fields are created in MailChimp), now I need to have AuoChimp see my extra fields on the WordPress end. I’m adding additional user fields to WordPress with the following code:
add_filter( 'user_contactmethods', 'modify_user_contact_methods' ); function modify_user_contact_methods( $user_contact ) { $user_contact['phone'] = __( 'Phone Number' ); $user_contact['location'] = __( 'Location' ); return $user_contact; }
Autochimp isn’t recognizing these fields – it only sees Username, Nickname, Website, & Bio. I’d like to also sync the user’s Phone & Location.
Using AutoChimp v2.14
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add WordPress User Fields (Mailing Lists Page, Step #3)’ is closed to new replies.