ここから directory_country_region テーブルに 4000 以上の国/州コードをインポートしました - http://www.magentocommerce.com/boards/viewthread/272591/。うまく機能します... 1つのことを除いて。都道府県は、default_name 列ではなく、region_id で並べ替えられます。
app/core/code/core/Mage/Directory/Model/Resource/Region/Collection.php ですでに低レベルで行われているようです
protected function _construct()
{
$this->_init('directory/region');
$this->_countryTable = $this->getTable('directory/country');
$this->_regionNameTable = $this->getTable('directory/country_region_name');
$this->addOrder('name', Varien_Data_Collection::SORT_ORDER_ASC);
$this->addOrder('default_name', Varien_Data_Collection::SORT_ORDER_ASC);
}
この質問が尋ねられた場所をいくつか見つけましたが、何も機能しませんでした:
Magento:州/州のドロップダウンの項目をアルファベット順にソートする方法
私は本当にこれができると思っていましたが、影響はありません: http://open-source.noads.biz/guide-magento-ecommerce/ordinare-la-tendina-delle-regioni-stati-province.html
グーグルは私を失望させ、私はアイデアを使い果たしました。