Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162457572
ITEM: 202509596
Grab a timeless look with this '47 Payson Captain Adjustable Hat perfect for representing your Chicago CubsThe '47 Captain offers a fresh take on the classic flat-brimmed snapback complete with an embroidered appliqu team patch on the front for a touch of timeless style With its six-panel construction eyelets for breathability and woven Chicago Cubs clip tag at the back this hat delivers both comfort and team spirit
Features and Benefits
Embroidered applique team patch on front
Rope embellishment at brim
Six panels with eyelets
Woven team logo clip tag at back
Mid Crown
Unstructured relaxed fit
Officially licensed
Imported
Material: 100% Cotton
Wipe clean with a damp cloth
Snap Closure
Brand: '47
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();