php - Get customer info on checkout registering after order is placed -


user comes checkout , selects register new customer, when placing order, trying info he/she entered like:

 //this in paypal standard model $quote = $this->getquote(); $isquotevirtual = $quote->getisvirtual(); $address = $isquotevirtual ? $quote->getbillingaddress() : $quote->getshippingaddress();  //city: $address->getcity();  //country code: $address->getcountryid(); 

this works when customer logged in, when he/she selects register info not available cause not saved in sales_flat_quote_address table, there way me customer info @ point? hook can use or store in session or there more elegant way of dealing this. thank in advance.

i trying fix paypal issue in magento 1.4.0.1 version this, found link: http://www.magentocommerce.com/bug-tracking/issue?issue=8467 , magento team offering patch if find useful: http://www.magentocommerce.com/wiki/_media/patches/bug20832.patch


Comments