Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 161261674
ITEM: 202235545
Show off your Chicago Cubs pride with this '47 Cozumel Hitch Adjustable Hat The '47 Hitch boasts a retro-inspired silhouette constructed with a pinched five-panel crown for a classic yet contemporary look Its embroidered fabric applique on the front panel proudly displays your Chicago Cubs fandom
Features and Benefits
Officially licensed
Imported
Slightly Curved Bill
Snap Closure
Structured fit
Wipe clean with a damp cloth
The '47 Hitch is a retro-inspired silhouette constructed with a pinched five-panel crown
Rope embellishment on visor
Brand: '47
Embroidered fabric applique on solid front panel
Mid and rear panels with eyelets
Mid Crown
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();