Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162421861
ITEM: 203163034
Show off your Utah Mammoth pride with this Trucker Adjustable Hat from '47The '47 Trucker boasts a classic design with a structured silhouette featuring a cotton twill front and a semi-curved brim Its breathable mesh back panels ensure you stay cool and comfortable making it perfect for cheering on the Mammoth all season long
Features and Benefits
Officially licensed
Embroidered team logo on front
Solid front panels with eyelets
Imported
Mesh mid and rear panels
Material: 100% Wool
Slightly Curved Bill
Snap Closure
Structured fit
Brand: '47
The '47 Trucker is a structured silhouette with a cotton twill front, a semi-curved brim and a breathable mesh back
Wipe clean with a damp cloth
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();