Shock Doctor Kids' Gel Max Flavor Fusion Convertible Mouth Guard
$18.99
$18.04$18.04 with Academy Credit Card
Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 026426627
ITEM: 6353Y
Keep your mouth safe with the Shock Doctor Kids' Gel Max Flavor Fusion Convertible Mouth Guard. The mouth guard is flavored and features Gel Max construction for protection and a comfortable fit.
Features and Benefits
Gel Max construction offers protection and a comfortable fit
Flavored
Specifications
Protects: Mouth
Product Type: Protective Gear
Material technology: Gel Max
Protective Gear Type: Mouthguards
Age Group: Kids'
Style: Mouthguards
Activity: Football
Polarized: No
Gender: Boys'
Visor: No
What's in the Box
Shock Doctor Kids' Gel Max Flavor Fusion Convertible Mouth Guard
Owner's manual
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();