Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 163987823
ITEM: 201663590
Stay cozy while cheering on the Wisconsin Badgers with this Pressbox Poncho Fleece Pullover Sweatshirt The fleece lining adds an extra layer of warmth while the relaxed fit ensures all-day comfort for cheering on the Badgers Featuring the team logo prominently printed on the front this sweatshirt makes it clear you're a devoted fan
Features and Benefits
Machine wash with garment inside out tumble dry low
Imported
Fleece lining for a soft feel and added warmth
Pullover
Officially licensed
Long sleeve
Midweight sweatshirt suitable for moderate temperatures
Crew neck
Team logo printed on front
Rounded droptail hem with unfinished seams
Material: 52% Polyester/48% Cotton
Brand: Pressbox
Specifications
Sleeve length: Long Sleeve
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();