When I only use the format handlers for "Name (First name, Last name)" the First name and Last name doesn't get saved to the order during checkout.

Comments

m_wiking’s picture

Any updates on this one. The same thing is happening when only name is selected: Name (single line)

helior’s picture

Status: Active » Closed (works as designed)

This is by design, actually.

/**
 * Implements hook_field_is_empty().
 */
function addressfield_field_is_empty($item, $field) {
  // Every address field must have at least a country value or it is considered
  // empty, even if it has name information.
  return empty($item['country']);
}