Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 156490034
ITEM: 201463674
Step out with a clean look up top in the form of this Philadelphia 76ers trucker adjustable hat from Mitchell Ness It features an undeniable Philadelphia 76ers graphic embroidered on the front panels and a neutral crown and bill that makes it easy to pair with your favorite game day tee The mesh mid and rear panels allow you to enjoy a pleasant breeze while the snap closure ensures your perfect fit is as easy to sink as a free throw
Features and Benefits
Mesh mid and rear panels
One size fits most
Officially licensed
Imported
Structured fit
Solid front panel
Material: 60% Polyester/40% Cotton
Mid Crown
Wipe clean with a damp cloth
Embroidered graphics with raised details
Curved bill
Contrast-color undervisor
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();