• hi,
    I have a field in mailchimp:
    label: First Name
    content: FIRST_NAME

    and in function.php
    $ fields [] = new PMProRH_Field (
    ‘First_name’,
    ‘Text’,
    array (
    ‘name’ => ‘First_Name’,
    ‘label’ => ‘Name’,
    ‘id’ => ‘First_Name’,
    ‘class’ => ‘First_Name’,
    ‘profile’ => true,
    ‘required’ => true,
    ));
    the email is stored, while the first name no. Why?

Viewing 1 replies (of 1 total)
  • Hi Federico,

    A couple of things for you to check is giving your Register Helper field a better key. In general, avoid using capital letters, but in this case you might try member_first_name. What often is the issue when one field isn’t being saved is that there already exists and usermeta entry with that key. Also, the field type shouldn’t be capitalized. Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘sync field’ is closed to new replies.