Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我登录 admin 并导航到System >> Configuration时,我有一个已打开的 Incho Featured Products 菜单。我希望它默认为General >> General。我怎样才能做到这一点?
尝试
转到 /app/code/local/[companyName]/[moduleName]/etc/system.xml
<config> ...... <sections> <xyz translate="label" module="xyz"> ..... <sort_order>1</sort_order>
更改<sort_order>1</sort_order>为更大的数字,例如<sort_order>96</sort_order>
<sort_order>1</sort_order>
<sort_order>96</sort_order>
(这是其他模块的做法,不确定他们是否使用相同的方法)