Tips on Customizing Lightbox slider – Responsive Lightbox Gallery

How to Hide Lightbox slider - Responsive Lightbox Gallery. Admin Menus

function plt_hide_simple_lightbox_gallery_menus() {
	//Hide "S. Lightbox Gallery".
	remove_menu_page('edit.php?post_type=slgf_slider');
	//Hide "S. Lightbox Gallery → All Galleries".
	remove_submenu_page('edit.php?post_type=slgf_slider', 'edit.php?post_type=slgf_slider');
	//Hide "S. Lightbox Gallery → Add New Lightbox Gallery".
	remove_submenu_page('edit.php?post_type=slgf_slider', 'post-new.php?post_type=slgf_slider');
	//Hide "S. Lightbox Gallery → Help and Support".
	remove_submenu_page('edit.php?post_type=slgf_slider', 'SLGF-help-page');
}

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

Where do I put this code?

How to Hide Lightbox slider - Responsive Lightbox Gallery. Meta Boxes

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

	//Hide the "Add Images" meta box.
	remove_meta_box('Add Images', $screen->id, 'normal');
	//Hide the "Apply Setting On Lightbox Gallery" meta box.
	remove_meta_box('Apply Setting On Lightbox Gallery', $screen->id, 'normal');
	//Hide the "Lightbox Gallery Shortcode" meta box.
	remove_meta_box('Lightbox Gallery Shortcode', $screen->id, 'side');
	//Hide the "Rate us on WordPress" meta box.
	remove_meta_box('Rate us on WordPress', $screen->id, 'side');
}

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