Tips on Customizing Spot.IM Comments

How to Hide the "Spot.IM" Admin Menu

function plt_hide_spotim_comments_menus() {
	//Hide the "Spot.IM" menu.
	remove_menu_page('wp-spotim-settings');
}

add_action('admin_menu', 'plt_hide_spotim_comments_menus', 21);

Where do I put this code?

How to Hide the "Spot.IM" Meta Box

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

	//Hide the "Spot.IM" meta box.
	remove_meta_box('spotim', $screen->id, 'advanced');
}

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