diff --git a/src/mt-cart.php b/src/mt-cart.php index 8c58d6d5..5898c3dc 100644 --- a/src/mt-cart.php +++ b/src/mt-cart.php @@ -1209,16 +1209,3 @@ function mt_get_cart( $user_ID = false, $cart_id = false ) { } return $cart; } - -add_action( 'wp_head', 'mt_cart_meta', 1 ); -/** - * Adds the user's cart ID into meta data for admin retrieval for customer assistance. - * - * Cart Data does not expose any user-specific information; contains only event ID and tickets selected. - */ -function mt_cart_meta() { - $unique_id = mt_get_unique_id(); - if ( $unique_id ) { - echo "\n"; - } -}