Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 152027544
ITEM: NC5A-0C3E-LSN-J5D
Make sunny days more enjoyable by wearing this LSU Tigers Primetime Ace Adjustable Visor from Nike The curved bill provides shade in classic style while an adjustable closure lets you customize the fit The embroidered team details stand out against the neutral fabric emphasizing your LSU Tigers fandom
Features and Benefits
Team wordmark in raised embroidery across the front
Material: 100% Polyester
Imported
Embroidered team logo on right side
Brand: Nike
Officially licensed
Adjustable hook and loop fastener strap
Contrast-color undervisor
One size fits most
Curved bill
Dri-FIT technology wicks away moisture
Wipe clean with a damp cloth
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();