Magento Event Called When Customer Registers from Checkout Page

event-observermagento-1.7magento-1.8

Customer can add the product in cart and without logged in he is click on proceed to checkout page.

From there is is create the account then which event called.

Best Answer

In case you use the Onepage checkout process, you can try this event which is triggered when the customer model is instantiated during the creation of the quote core_copy_fieldset_customer_account_to_quote

The event data are:

  • target: Mage_Sales_Model_Quote
  • source: Mage_Customer_Model_Customer
  • root: string 'global'

Hope it helps. Otherwise you can take a look at the class and method Mage_Checkout_Model_Type_Onepage::_validateCustomerData

Related Topic