I am using v1.5.0 of the module on Magento 2.4.7-p7
I have enabled the Automatically add order to customer setting which states:
Automatically add order to existing customer with same email address.

I placed multiple guest orders and it's not linking them to the customer's account automatically.
Looking at the code, this is the only reference to the above config:
|
} elseif ($this->helperData->isMergeIfCustomerAlreadyExists()) { |
You'll notice this is in an Admin controller. That means there's no code to automate adding the customer, it always has to be a manual action, either by the admin or customer.
The option to associate them automatically isn't working correctly because there is no code/observer that implements it.
I am using v1.5.0 of the module on Magento 2.4.7-p7
I have enabled the
Automatically add order to customersetting which states:I placed multiple guest orders and it's not linking them to the customer's account automatically.
Looking at the code, this is the only reference to the above config:
magento2-guest-to-customer/Controller/Adminhtml/Customer/Index.php
Line 123 in 6d4755a
You'll notice this is in an Admin controller. That means there's no code to automate adding the customer, it always has to be a manual action, either by the admin or customer.
The option to associate them automatically isn't working correctly because there is no code/observer that implements it.