Get Billing Addresses in dropdown in Magento

痴心易碎 提交于 2019-12-13 03:59:33

问题


I am trying to get the dropdown list for billing addresses in Magento, I can see the following block of code for shipping, but essentially want the billing or am I doing something wrong?

$this->getAddressesHtmlSelect('shipping');

I have tried changing this to 'billing' with no joy


回答1:


You can get billing address as dropdown by this code

echo Mage_Checkout_Block_Onepage_Billing::getAddressesHtmlSelect('billing');

Refer app\design\frontend\base\default\template\persistent\checkout\onepage\billing.php



来源:https://stackoverflow.com/questions/23757287/get-billing-addresses-in-dropdown-in-magento

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!