Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160879245
ITEM: 4943410
Your devotion to the Pittsburgh Pirates is well known but you're always looking for ways to take it up a notch You'll be able to do just that by wearing this Clean Up adjustable hat from '47 It features bold Pittsburgh Pirates graphics embroidered on the crown perfect for displaying your unwavering loyalty
Features and Benefits
Adjustable fabric strap with snap buckle
Brand: '47
Curved bill
Imported
Low Crown
One size fits most
Officially licensed
Six panels with eyelets
Woven clip tag
Wipe clean with a damp cloth
Unstructured relaxed fit
Embroidered graphics with raised details
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();