Link a guest order to an existing customer account in magento -


I want to link a guest order with an existing account in Magento.

Is there any easy way?

If you are using Magento & gt; = 1.4.1, you can run it in your database:

  UPDATE sales_flat_order SET customer_id = YOUR_CUSTOMER_ID_HERE where entity_id = YOUR_ORDER_ID_HERE and Customer_id IS Null   < P> You will also need to upgrade the "Grid" table:  
  UPDATE sales_flat_order_grid SET customer_id = YOUR_CUSTOMER_ID_HERE where unit_id = YOUR_ORDER_ID_HERE and customer_id IS are taped    

Comments