1
我已經在Magento中創建了2個模塊(A和B)。每個模塊都從管理部分進行管理。Magento管理菜單鏈接沒有顯示
我試圖通過在模塊的配置文件寫入以下配置
模塊A>創建菜單下的CMS(菜單)在管理部分,用於每個模塊的鏈接等>的config.xml
<adminhtml>
<menu>
<a module="A">
<title>A</title>
<sort_order>100</sort_order>
<children>
<items module="A">
<title>Manage A</title>
<sort_order>0</sort_order>
<action>a/adminhtml_a</action>
</items>
</children>
</a>
</menu>
<adminhtml>
模塊B>等>的config.xml
<adminhtml>
<menu>
<b module="B">
<title>B</title>
<sort_order>100</sort_order>
<children>
<items module="B">
<title>Manage B</title>
<sort_order>1</sort_order>
<action>b/adminhtml_b</action>
</items>
</children>
</b>
</menu>
<adminhtml>
然而僅鏈接模塊B下CMS菜單顯示出來。我怎樣才能顯示這兩個鏈接?
嗨,我使用的Magento 1.9.2.2,在管理面板,菜單項「移動」沒有顯示出來,你能幫助我嗎? – 2015-12-15 08:02:46