Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162971281
ITEM: 202497016
Show off your Texas Longhorns pride with this Local Club Adjustable Hat from NikeWith its relaxed unstructured fit and curved bill this hat is designed for all-day comfort whether you're on campus or cheering from the stands Featuring embroidered Texas Longhorns graphics with raised details this cap lets you represent your team in style
Features and Benefits
Imported
Low Crown
Officially licensed
Brand: Nike
Curved bill
Unstructured relaxed fit
Six panels with eyelets
Wipe clean with a damp cloth
Adjustable fabric strap with slide buckle
Material: 100% Cotton
Embroidered graphics with raised details
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();