Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 157648243
ITEM: 201656756
Give your young fan a taste of campus style with this Purdue Boilermakers Campus Pullover Hoodie from Champion Midweight and cozy this hoodie features a fleece lining that provides added warmth on cooler days The screen-printed team name and logo on the chest let your young fan showcase their Boilermaker pride in style
Features and Benefits
Brand Champion
Officially licensed
Material: 50% Cotton/50% Polyester
Long sleeve
Hooded
Imported
Screen print team name and logo on chest
Midweight pullover suitable for moderate temperatures
Front pouch pocket offers additional warmth and storage
Machine wash, tumble dry low
Fleece lining provides added warmth and a soft feel
Pullover
Specifications
Clothing Type: Hoodies
Neckline: Hood
Sleeve length: Long Sleeve
Activity: College Sports
Material: 50% Cotton/50% Polyester
Heat Retention: Yes
Gender: Boys'
Zipper: No Zipper
Size Range: Boys' (8 - 20)
Moisture Wicking: No
Care: Machine wash, tumble dry low
Product Type: Sweatshirts
Age Group: Youth
Style: Pullover Hoodies
Features: Insulated
Hood: Yes
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();