Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160470669
ITEM: 202754149
Cozy up in style while cheering on the Wisconsin Badgers with this Pressbox Campus Arch Melange Poncho Vintage Pullover Sweatshirt The washed fabric provides a vintage look while the arched screen print team name on the chest proudly displays your Wisconsin Badgers spirit Plus with its fleece lining and lightweight design this sweatshirt is perfect for moderate temperatures
Features and Benefits
Lightweight sweatshirt suitable for moderate temperatures
Machine wash with garment inside out, tumble dry low
Long sleeve
Washed fabric for a vintage look
Pullover
Officially licensed
Brand: Pressbox
Rounded droptail hem with raw edge
Arched screen print team name on chest
Crew neck
Fleece lining
Dropped shoulder seams provide a relaxed fit
Specifications
Clothing Type: Fleece,Pullovers
Neckline: Crew Neck
Sleeve length: Long Sleeve
Activity: College Sports
Material: Fleece
Heat Retention: Yes
Gender: Women's
Zipper: No Zipper
Size Range: Women's
Moisture Wicking: No
Care: Machine wash with garment inside out, tumble dry low
Product Type: Sweatshirts
Age Group: Adults'
Style: Pullover Sweatshirts
Features: Insulated
Hood: No
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();