Tips on Customizing Colorbox Panels & Info Box

How to Hide Colorbox Panels Admin Menus

function plt_hide_colorbox_panels_menus() {
	//Hide "Colorbox Panels".
	remove_menu_page('edit.php?post_type=colorbox_panels');
	//Hide "Colorbox Panels → All Colorbox".
	remove_submenu_page('edit.php?post_type=colorbox_panels', 'edit.php?post_type=colorbox_panels');
	//Hide "Colorbox Panels → Add New Colorbox".
	remove_submenu_page('edit.php?post_type=colorbox_panels', 'post-new.php?post_type=colorbox_panels');
	//Hide "Colorbox Panels → More Free Plugins".
	remove_submenu_page('edit.php?post_type=colorbox_panels', 'wpsm_ac_sh_help_page');
}

add_action('admin_menu', 'plt_hide_colorbox_panels_menus', 11);

Where do I put this code?

How to Hide Colorbox Panels Meta Boxes

function plt_hide_colorbox_panels_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Add Colorbox Panel" meta box.
	remove_meta_box('add_colorbox', $screen->id, 'normal');
	//Hide the "Colorbox Shortcode" meta box.
	remove_meta_box('colorbox_shortcode', $screen->id, 'normal');
	//Hide the "Colorbox Pro Demos" meta box.
	remove_meta_box('colorbox_pro_get', $screen->id, 'normal');
	//Hide the "More Premium Plugin from Wpshopmart" meta box.
	remove_meta_box('colorbox_pro_more', $screen->id, 'normal');
	//Hide the "Follow Us" meta box.
	remove_meta_box('colorbox_pro_follow', $screen->id, 'side');
	//Hide the "Rate Us If You Like This Plugin" meta box.
	remove_meta_box('colorbox_rateus', $screen->id, 'side');
	//Hide the "Colorbox Settings" meta box.
	remove_meta_box('colorbox_setting', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_colorbox_panels_metaboxes', 20);