Support

Account

Home Forums ACF PRO Ajax Callback Add Row To Repeater Reply To: Ajax Callback Add Row To Repeater

  • Solved it!

    Replace:
    $i = add_row('field_595cec87bddf0', $row, $user_id);
    With:
    $i = add_row('field_595cec87bddf0', $row, 'user_'.$user_id);

    Note the user_ before the ID, otherwise it posts to the postmeta table not the usermeta table!