-
Home
-
GRT Consent Tool
- Tips
function plt_hide_grt_consent_tool_menus() {
//Hide "Consent Guard".
remove_menu_page('grt-consent-tool');
//Hide "Consent Guard → Dashboard".
remove_submenu_page('grt-consent-tool', 'grt-consent-tool');
//Hide "Consent Guard → Banner Settings".
remove_submenu_page('grt-consent-tool', 'grt-consent-tool-banner');
//Hide "Consent Guard → Script Blocking".
remove_submenu_page('grt-consent-tool', 'grt-consent-tool-scripts');
//Hide "Consent Guard → Cookie Categories".
remove_submenu_page('grt-consent-tool', 'grt-consent-tool-categories');
//Hide "Consent Guard → Consent Logs".
remove_submenu_page('grt-consent-tool', 'grt-consent-tool-logs');
//Hide "Consent Guard → Advanced".
remove_submenu_page('grt-consent-tool', 'grt-consent-tool-advanced');
}
add_action('admin_menu', 'plt_hide_grt_consent_tool_menus', 11);
Where do I put this code?