Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162421887
ITEM: 203163035
Show off your Utah Mammoth pride with this Rope Hitch Adjustable Hat from '47The '47 Hitch boasts a retro-inspired silhouette with a pinched five-panel crown and rope detailing on the visor for a look that's both classic and contemporary Featuring raised embroidered Utah Mammoth graphics this hat makes it clear which team you support while offering a comfortable structured fit
Features and Benefits
Snap Closure
Brand: '47
Material: 100% Cotton
Officially licensed
Mid Crown
One size fits most
Raised embroidered graphics on front
Contrast-color underbill
Slightly Curved Bill
Wipe clean with a damp cloth
Imported
The '47 Hitch is a retro-inspired silhouette constructed with a pinched five-panel 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();