-
Home
-
Easy Contact Form – Form Builder Plugin – Forms for WordPress
- Tips
function plt_hide_easy_contact_form_builder_menus() {
//Hide "GrandWP Forms".
remove_menu_page('gdfrm');
//Hide "GrandWP Forms → Forms List".
remove_submenu_page('gdfrm', 'gdfrm');
//Hide "GrandWP Forms → Settings".
remove_submenu_page('gdfrm', 'gdfrm_settings');
//Hide "GrandWP Forms → Submissions (pro)".
remove_submenu_page('gdfrm', 'gdfrm_submissions');
//Hide "GrandWP Forms → Themes (pro)".
remove_submenu_page('gdfrm', 'gdfrm_themes');
//Hide "GrandWP Forms → Featured Plugins".
remove_submenu_page('gdfrm', 'gdfrm_plugins');
}
add_action('admin_menu', 'plt_hide_easy_contact_form_builder_menus', 11);
Where do I put this code?