Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 158152303
ITEM: 200898402
Complete your USC Trojans game day look with this Primetime Rise Adjustable Hat from Nike This structured high-crown hat features an embroidered USC Trojans logo and wordmark letting you represent your team with pride With six panels and eyelets this hat offers a classic look with enhanced breathability for all-day comfort
Features and Benefits
Material 100 Polyester
Six panels with eyelets
Officially licensed
One size fits most
Embroidered team logo and wordmark on crown
Wipe clean with a damp cloth
Imported
High Crown
Brand: Nike
Curved bill
Structured fit
Snap Closure
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();