2012-11-26 40 views
7

如何在結帳期間選擇運輸和結算字段? (我想向他們展示在側邊欄)Magento得到選擇的運輸和結算方法地址字段

我shipping.phtml用這個,但ofcourse這還只是目前的「地址」(我想在methods.phtml和其他網頁使用它)

$this->getAddress()->getFirstname() 

所以我認爲這會工作了...

Mage::getSingleton('checkout/session')->getShippingAddress()->getFirstname() 

但事與願違,任何人有一個提示?

增加: 這一次是幫助了我很多,但我堅持:-S How do I get the shipping method the user has chosen during checkout?

回答

11

運送和帳單地址是引用對象的子女。所以這樣的事情應該可以工作:

Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getFirstname(); 
+0

哎喲!就是這個! –

+0

這適用於前端用戶,但如何將訂單變爲管理員? – rajatsaurastri

相關問題