Add a field for the Account ID to map to set the account for all contact.
-
I want to add a field for the Account ID to map to the account for all contacts.
But I don’t see the field in the object lookup. What am I missing? I see the field I added with the field_foo example but don’t see these:
How do I set the object: user ?
add_filter( ‘object_sync_for_salesforce_wordpress_object_data’, ‘add_data’, 10, 1 );
function add_data( $wordpress_object ) {
$wordpress_object[‘account_id’] = ‘–record_id_for account–‘;
return $wordpress_object;
}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Add a field for the Account ID to map to set the account for all contact.’ is closed to new replies.