我目前有一个我创建的扩展,它现在位于它自己的顶级菜单中。我想要移动它,以便该项目将显示在客户菜单内。有人知道怎么做吗?
看起来这是在扩展config.xml文件中处理的。我现在拥有的代码如下:
<menu>
<testimonials module="testimonials">
<title>Testimonials</title>
<sort_order>71</sort_order>
<children>
<items module="testimonials">
<title>Manage Items</title>
<sort_order>0</sort_order>
<action>testimonials/adminhtml_testimonials</action>
</items>
</children>
</testimonials>
</menu>我尝试将title元素更改为Customers,它只是创建了一个重复的Customers菜单。
发布于 2010-06-16 10:23:31
试试这个:
<menu>
<customer>
<children>
<testimonials module="testimonials">
<title>Testimonials</title>
<sort_order>71</sort_order>
<children>
<items module="testimonials">
<title>Manage Items</title>
<sort_order>0</sort_order>
<action>testimonials/adminhtml_testimonials</action>
</items>
</children>
</testimonials>
</children>
</customer>
</menu>https://stackoverflow.com/questions/3048632
复制相似问题