Skip Navigation

[Resolved] Set toolset admin link on top of admin menu

This support ticket is created 5 years, 3 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

Tagged: 

This topic contains 2 replies, has 2 voices.

Last updated by roulartaM 5 years, 3 months ago.

Assisted by: Waqar.

Author
Posts
#1349951
admin.jpg

Hi support! Since Toolset is so much used in our websites: is there a way to put the Toolset link right after the 'dashboard' menu link in the admin panel? Now it always appears at the bottom of the admin menu 🙁

#1349973

Hi,

Thank you for waiting.

To reposition the Toolset admin menu item, after the first "Dashboard" item, the "menu_order" filter can be used:
https://codex.wordpress.org/Plugin_API/Filter_Reference/menu_order

Example:


function custom_menu_order() {
	return array( 'index.php', 'toolset-dashboard' );
}

add_filter( 'custom_menu_order', '__return_true' );
add_filter( 'menu_order', 'custom_menu_order' );

You can include this code snippet in your active theme's "functions.php" file.

Alternatively, there are third-party plugins available too, which can be used to customize the admin menu items, without any custom code.

https://wordpress.org/plugins/admin-menu-editor/
https://wordpress.org/plugins/wp-custom-admin-interface/

I hope this helps and please let me know if you need any further assistance around this.

regards,
Waqar

#1350019

Works great. I used the filter code to avoid another plugin. Thanks a lot for you support!