Tips on Customizing WP Slick Slider and Image Carousel

How to Hide the "Slick Slider" Admin Menu

function plt_hide_wp_slick_slider_and_image_carousel_menus() {
	//Hide the "Slick Slider" menu.
	remove_menu_page('wp-slick-slider-and-image-carousel');
}

add_action('admin_menu', 'plt_hide_wp_slick_slider_and_image_carousel_menus', 1000);

Where do I put this code?

How to Hide WP Slick Slider and Image Carousel Meta Boxes

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

	//Hide the "WP Slick Slider and Image Carousel - Settings" meta box.
	remove_meta_box('custom-metabox', $screen->id, 'normal');
	//Hide the "More Premium - Settings" meta box.
	remove_meta_box('wpsisac-post-metabox-pro', $screen->id, 'normal');
}

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