'47 Vanderbilt Commodores Roscoe Hitch Adjustable Hat
$37.99
$36.09$36.09 with Academy Credit Card
Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 153700067
ITEM: 201534981
Show off your Vanderbilt Commodores spirit with this '47 Roscoe Hitch Adjustable Hat The '47 Roscoe Hitch Adjustable Hat features a classic five-panel design with embroidered Vanderbilt Commodores graphics letting you represent your school with pride Made from 100 cotton this hat offers a comfortable and breathable feel perfect for all-day wear With its adjustable snap closure and curved bill this hat provides a customizable fit and a timeless look that complements any outfit
Features and Benefits
Mid Crown
Curved bill
Officially licensed
Structured fit
One size fits most
Five panels with mid and rear eyelets
Imported
Embroidered graphics
Brand: '47
Wipe clean with a damp cloth
Snap Closure
Material: 100% Cotton
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();