How do you move an admin menu item in Magento
- by Josh Pennington
I currently have an extension that I created and it currently sits inside of its own top level menu. I would like to move it so that the item would appear inside of the Customers menu. Does anyone know how to do this?
It looks like this is handled inside the extensions config.xml file. The code that I have for it right now is as follows:
<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>
I tried changing the title element to Customers and it just created a duplicate Customers menu.
Does anyone have any ideas?
Thanks
Josh Pennington