我正在创建模块以在admin下添加额外的下拉字段 - > system - >配置 - >目录 - >目录 - > “产品列表排序依据”下拉列表中的前端。如何在那里添加additoinal字段?
答案 0 :(得分:4)
您必须在system.xml中配置它:
...
<sections>
<catalog>
<groups>
<frontend>
<fields>
<dropdown translate="label comment">
<label>Dropdown</label>
<comment>Dropdown with global scope.</comment>
<frontend_type>select</frontend_type>
<source_model>jr_customconfigexample/system_config_source_dropdown_values</source_model>
<sort_order>30</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>0</show_in_website>
<show_in_store>0</show_in_store>
</dropdown>
...
http://www.bubblecode.net/en/2012/01/30/add-custom-settings-in-magento-admin-panel/