Warning: include_once(/home/vhosts/open-source.noads.biz/php/core/_notes): failed to open stream: No such file or directory in /home/vhosts/open-source.noads.biz/php/init.php on line 11

Warning: include_once(): Failed opening '/home/vhosts/open-source.noads.biz/php/core/_notes' for inclusion (include_path='.:/opt/remi/php56/root/usr/share/pear:/opt/remi/php56/root/usr/share/php:/usr/share/pear:/usr/share/php') in /home/vhosts/open-source.noads.biz/php/init.php on line 11

Warning: include_once(/home/vhosts/open-source.noads.biz/php/class/_notes): failed to open stream: No such file or directory in /home/vhosts/open-source.noads.biz/php/init.php on line 25

Warning: include_once(): Failed opening '/home/vhosts/open-source.noads.biz/php/class/_notes' for inclusion (include_path='.:/opt/remi/php56/root/usr/share/pear:/opt/remi/php56/root/usr/share/php:/usr/share/pear:/usr/share/php') in /home/vhosts/open-source.noads.biz/php/init.php on line 25

Strict Standards: Declaration of File::getName() should be compatible with Content::getName($html) in /home/vhosts/open-source.noads.biz/php/class/File.php on line 115
Ordinare la tendina delle Regioni(Stati/Province)
Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/vhosts/open-source.noads.biz/front-office/templates/default.php on line 13

Warning: include_once(http://open-source.noads.biz/front-office/google.php): failed to open stream: no suitable wrapper could be found in /home/vhosts/open-source.noads.biz/front-office/templates/default.php on line 13

Warning: include_once(): Failed opening 'http://open-source.noads.biz/front-office/google.php' for inclusion (include_path='.:/opt/remi/php56/root/usr/share/pear:/opt/remi/php56/root/usr/share/php:/usr/share/pear:/usr/share/php') in /home/vhosts/open-source.noads.biz/front-office/templates/default.php on line 13
29/11/2010

Ordinare la tendina delle Regioni(Stati/Province)

Per ordinare la lista degli Stati/Province della registrazione cliente devi modificare il file app/code/core/Mage/Directory/Helper/Data.php per il front-office e app/code/core/Mage/Adminhtml/controllers/JsonController.php per il back-office.

Front-office

/* app/code/core/Mage/Directory/Helper/Data.php */
public function getRegionJson()
...
$collection = Mage::getModel('directory/region')->getResourceCollection()
->addCountryFilter($countryIds)
->load();
...

Modificate la funzione in questo modo.

/* app/code/core/Mage/Directory/Helper/Data.php */
public function getRegionJson()
...
$collection = Mage::getModel('directory/region')->getResourceCollection()
->addCountryFilter($countryIds)
->addOrder('default_name', 'ASC')
->load();
...

Back-office

/* app/code/core/Mage/Adminhtml/controllers/JsonController.php */
public function countryRegionAction()
...
$arrRegions = Mage::getResourceModel('directory/region_collection')
->addCountryFilter($countryId)
->load()
->toOptionArray();
...

Modificate la funzione in questo modo.

/* app/code/core/Mage/Directory/Helper/Data.php */
public function countryRegionAction()
...
$arrRegions = Mage::getResourceModel('directory/region_collection')
->addCountryFilter($countryId)
->addOrder('default_name', 'ASC')
->load()
->toOptionArray();
...
Free Web Hosting