Tips on Customizing Autoglot – Automatic WordPress Translation

How to Hide the "Autoglot Setup" Admin Menu

function plt_hide_autoglot_menus() {
	//Hide the "Autoglot Setup" menu.
	remove_menu_page('autoglot_translation_setup');
}

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

Where do I put this code?

How to Hide the "Text Replacement" Meta Box

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

	//Hide the "Text Replacement" meta box.
	remove_meta_box('autoglot_textrepl_box', $screen->id, 'advanced');
}

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