Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 131979749
ITEM: DN6028-613
Put your fandom on display with the Nike Men's University of Oklahoma DF UV Coach Graphic T-shirt. The polyester fabric provides a comfortable feel, while the graphic design shows off your Sooners pride.
Features and Benefits
100% polyester material provides comfort
Short sleeves
V-neck
Graphic design for style
Specifications
Neckline: Crew Neck
Product Type: Shirts
UPF rating:
Sleeve length: Short Sleeve
Age Group: Adults'
Style: Graphic Tees
Activity: Casual
Material: 100% Polyester
Gender: Men's
Size Range: Men's
Moisture Wicking: No
Hood: No
What's in the Box
Nike Men's University of Oklahoma DF UV Coach Graphic T-shirt
User Manual
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();