This plugin has a number of hooks that you can use, as developer or as a user, to customize the user experience or to give access to extended functionalities.
You can use the poo_hide_main_menu
filter to completely hide the main PerfOps One menu or use the poo_hide_analytics_menu
, poo_hide_consoles_menu
, poo_hide_insights_menu
, poo_hide_tools_menu
, poo_hide_records_menu
and poo_hide_settings_menu
filters to selectively hide submenus.
Hide the main menu:
add_filter( 'poo_hide_main_menu', '__return_true' );
You can use the poo_hide_adminbar
filter to completely hide this plugin's item(s) from the admin bar.
Remove this plugin's item(s) from the admin bar:
add_filter( 'poo_hide_adminbar', '__return_true' );
By default, advanced settings and controls are hidden to avoid cluttering admin screens. Nevertheless, if this plugin have such settings and controls, you can force them to display with perfopsone_show_advanced
filter.
Display advanced settings and controls in admin screens:
add_filter( 'perfopsone_show_advanced', '__return_true' );