Hi Matt,
Thanks for reaching out to us.
You can remove the ‘miniOrange API Authentication’ menu item from the WP-admin sidebar, just paste the below code in your function.php file.
add_action( 'admin_init', 'my_remove_menus' );
function my_remove_menus() {
/* Use remove_menu_page() and remove_submenu_page() here. */
remove_menu_page('mo_api_authentication_settings');
}
Thanks
Team miniOrange