Как вывести select списка стран в Magento
Для вывода select-а списка стран в своем темплейте, воспользуйтесь следующим кодом...
1 2 3 4 5 6 7 8 9 10 11 |
<?php $customer = Mage::getSingleton('customer/session')->getCustomer(); $customerAddressId = $customer->getDefaultBilling(); $address = Mage::getModel('customer/address')->load($customerAddressId); echo $this->getLayout() ->getBlockSingleton('directory/data') ->getCountryHtmlSelect($address->getCountryId()) ; |
Author: | Tags: /
| Rating:
Leave a Reply