Hi All,
I have scored the forums and have not bee able to find any information on "Unsetting" GF Submenu items, especially the gf_user_registration, gf_campaignmonitor & gf_help
Generally I would add these into my "Unset" function, in my functions.php:
function remove_submenus() {
global $submenu;
unset($submenu['themes.php'][5]); // Removes 'Themes'.
}
add_action('admin_menu', 'remove_submenus');
This doesn't work though :( I need to stop my editors from viewing these options, removing their capabilities is not enough.
Any help would be great!