如何获得属性的位置?我想维护 state.phtml 中属性列表的顺序,因此需要检索每个属性在后端设置的位置。
非常感谢!
你可以用下面的代码
$attribute = Mage::getModel('eav/entity_attribute')->load( $code, 'your_attribute_code');
$option_col = Mage::getResourceModel( 'eav/entity_attribute_option_collection')
->setAttributeFilter( $attribute->getId() )
->setStoreFilter()
->setPositionOrder( 'ASC' );
$option_col->getSelect()->order('main_table.sort_order '.$orderby);
希望这对你有帮助。