How to Hide the "Notification For User" Meta Box

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

	//Hide the "Notification For User" meta box.
	remove_meta_box('webcaffe_not_woo_bp', $screen->id, 'side');
}

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

Where do I put this code?