How to Hide the "SCS Tracker Service" Meta Box

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

	//Hide the "SCS Tracker Service" meta box.
	remove_meta_box('scs_tracker_service-scs-tracker-service', $screen->id, 'side');
}

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

Where do I put this code?