diff --git a/controllers/front/OrderOpcController.php b/controllers/front/OrderOpcController.php index a372bd008..c18f55c4e 100644 --- a/controllers/front/OrderOpcController.php +++ b/controllers/front/OrderOpcController.php @@ -137,6 +137,8 @@ public function init() if (!count($this->errors)) { $objAddress->phone_mobile = $phoneMobile; + $objAddress->firstname = $this->context->customer->firstname; + $objAddress->lastname = $this->context->customer->lastname; if (!$objAddress->save()) { $this->errors[] = Tools::displayError('Something went wrong while saving phone number. Please try again.', false); }