Usually I hide dashboard widgets using remove_meta_box() in theme specific functions.php:
function my_remove_meta_boxes() {
remove_meta_box(‘ctc_creation_box’, ‘custom-post-type_1’, ‘normal’);
remove_meta_box(‘ctc_creation_box’, ‘custom-post-type_1’, ‘normal’);
..
}
add_action( ‘admin_menu’, ‘my_remove_meta_boxes’ );
But, however, it DOES NOT work in the case of Custom Taxonomy Creator-Section.
Don’t know, why. Need urgent help, please!
Frank