Tips on Customizing Daylife

How to Hide the "Daylife" Admin Menu

function plt_hide_daylife_menus() {
	//Hide the "Settings → Daylife" menu.
	remove_submenu_page('options-general.php', 'daylife-options');
}

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

Where do I put this code?

How to Hide the "Daylife" Meta Box

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

	//Hide the "Daylife" meta box.
	remove_meta_box('daylife-images', $screen->id, 'normal');
}

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