2014-07-02 63 views
1

我正在嘗試從結帳頁面獲取註冊客戶的地址。在結帳頁面我有一個表格,用戶必須填寫地址信息。現在的訣竅是讓該地址顯示在帳戶儀表板上。從結帳中獲取地址並使其成爲默認值的可能方法

我也試圖讓對這裏一個.phtml報價的地址是我的代碼

$quote = Mage::getSingleton('checkout/session')->getQuote(); 
$quote_billing = $quote->getBillingAddress(); 

echo $quote_billing 

是否有任何其他可能的方式來獲取和地址從會話

回答

1

嘗試:

$customer = Mage::getSingleton('customer/session')->getCustomer(); 

foreach ($customer->getAddresses() as $address) { 
    Zend_Debug::dump($address->getData()); 
} 
0

你也可以做你做的,只是在$ quote_billing上做getData()。這應該爲你提供你需要的數據。

相關問題