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
If i activate the multi step checkout, the order gets correctly saved (as partial) on the first step and the address_id will be set correctly. But on the second step when the order gets saved again, the address_id field is set to null.
What did you expect to happen?
The address_id should not get set to null
Version
3.x
What browser are you seeing the problem on?
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered:
On step #2 there won't be any address data in post, so $addressId will stay null and then in line 196 it will be saved to the order object. A quickfix could be to change line 196 to this:
if (!($order->address_id > 0)) {
$order->address_id = $addressId;
}
But i don't know if that has any other implications.
What happened?
If i activate the multi step checkout, the order gets correctly saved (as partial) on the first step and the address_id will be set correctly. But on the second step when the order gets saved again, the address_id field is set to null.
What did you expect to happen?
The address_id should not get set to null
Version
3.x
What browser are you seeing the problem on?
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered: