문제

I am trying to get the email address that the user enters on the onepage checkout - I have tried the following but I cannot see the email address anywhere within either object - any ideas?

Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getData();

Mage::getSingleton('checkout/session')->getQuote()->getBillingAddress()->getData();
도움이 되었습니까?

해결책

try the below

Mage::getSingleton('checkout/session')->getQuote()->getBillingAddress()->getEmail();

다른 팁

Try

$quote = Mage::getSingleton('checkout/session')->getQuote();
echo $quote->getCustomerEmail()
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top