Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 153694656
ITEM: 201292055
Step out with pride in this Harvard Crimson '47 Clean Up adjustable hat It features detailed embroidery of your favorite NCAA team's logo on the crown The adjustable pull-through strap is a convenient way to ensure a snug fit every time you wear this spirited Harvard Crimson cap
Features and Benefits
Six panels with eyelets
Woven clip tag
Low Crown
Adjustable fabric strap with snap buckle
Imported
Wipe clean with a damp cloth
Brand: '47
One size fits most
Material: 100% Cotton
Embroidered graphics with raised details
Curved bill
Unstructured relaxed fit
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();