Apologies that this will be a slightly vague question.
I have a customised version of Awesomecheckout (a onepage checkout) running on Mangento 1.9, but I've run into a problem where the customer's email address isn't being saved in the database when checking out as a guest.
I think this could easily be something that I've caused myself, so unlikely that anyone will know a solution right away, but I was hoping that someone might point me in the direction of what files might be responsible for this.
I've found that /app/code/Core/Mage/Checkout/Model/Type/Onepage.php does have the email ok in saveBilling() (it appears under both $address->getEmail() and $this->getQuote()->getCustomerEmail() ), but I can't work out what happens next (and so where it gets lost).
Many thanks for any suggestions.
AnattaDesign_AwesomeCheckout_OnepageController::saveBillingAction()
is the function which calls the magento's defaultsaveBilling()
– Mridul Aggarwal