Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CiviCRM Profile Sync will remove CiviCRM Contact First Name and Last Name if WordPress User fields are not set #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion includes/civicrm/cwps-civicrm-contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,11 @@ public function name_update( $args ) {
return;
}

// Check if the first name or last name is empty, both values are required to update a CiviCRM Contact
if (empty($user->first_name) || empty($user->last_name)) {
return;
}

// Update the CiviCRM Contact "First Name" and "Last Name".
$params = [
'version' => 3,
Expand Down Expand Up @@ -541,7 +546,7 @@ public function name_update( $args ) {


/**
* Check if a CiviCRM Contact's name should by synced.
* Check if a CiviCRM Contact's name should be synced.
*
* @since 0.3
*
Expand Down