You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug within customer import script. While there is a duplicated line and ignore_duplicates flag is set to 1, an error raises: E-mail is duplicated in import file
In order to avoid this, it is necessary to add the following code on line 499:
if (isset($this->_newCustomers[$email][$website]) && $this->getIgnoreDuplicates()) {
return true;
}
Best regards,
Jon
The text was updated successfully, but these errors were encountered:
Hi,
There is a bug within customer import script. While there is a duplicated line and ignore_duplicates flag is set to 1, an error raises: E-mail is duplicated in import file
In order to avoid this, it is necessary to add the following code on line 499:
if (isset($this->_newCustomers[$email][$website]) && $this->getIgnoreDuplicates()) {
return true;
}
Best regards,
Jon
The text was updated successfully, but these errors were encountered: