Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 164542949
ITEM: 200195433
Add a bold look to any fan 'fit with this Athletics Fairway hat Crafted by '47 it features an eye-catching team patch on the front and a matching rope embellishment The snap closure and mesh panels add a classic finish to this Athletics trucker hat
Features and Benefits
Embroidered fabric applique
Snap Closure
Curved bill
Material: 100% Nylon - Material I; 100% Polyester - Material II
Structured fit
One size fits most
Four mid and rear mesh panels
Two solid front panels with eyelets
Officially licensed
Rope embellishment on visor
Wipe clean with a damp cloth
Mid Crown
Specifications
Age Group: Adults
Gender: Men's
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();