Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 159620375
ITEM: 202127821
This '47 Fiji Trucker Adjustable Hat is a perfect addition to your Athletics gameday outfit This '47 trucker hat features an eye-catching sublimated pattern across the front panels adding a touch of tropical flair to your game-day look With two solid front panels and four mesh mid and rear panels this Athletics hat provides a comfortable blend of structure and breathability
Features and Benefits
Mid Crown
Curved bill
Wipe clean with a damp cloth
Structured fit
One size fits most
Material: 100% Cotton
Embroidered team graphic with raised details across front panels
Snap Closure
Two front panels with eyelets
Four mesh mid and rear panels
Contrast-color undervisor
Sublimated tropical pattern across front panels
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();