Hi,
I am trying to remove the Gravity Forms metabox from the WP dashboard. Usually I use this to remove stuff from the dashboard :
function remove_dashboard_widgets(){
global$wp_meta_boxes;
unset($wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard']);
}
add_action('wp_dashboard_setup', 'remove_dashboard_widgets');
But it doesn't seem to work with Gravity Forms. Does anybody know how to fix that ?