I have a user-defined menu item and I'd like it to be the first menu item on the index page... If I use the menu item editor under appearance, it always places it after the pre-defined ones... How would I change the priority of the items to allow the user defined on to be first?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Matt Beckett@Beck24

Matt Beckett - 0 likes
- TomG@tgrills

TomG - 0 likes
You must log in to post replies.use the plugin hook
elgg_register_plugin_hook_handler('prepare', 'menu:site', 'myhandler');
and reorder the array
Thanks, Matt...