Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 116996209
ITEM: 201-06-05
Without restricting your mobility, the Shock Doctor Boys' BioFlex Pee-Wee Cup is essential on game day. The protective cup is vented to keep you cool and is shaped specifically for athletes. It also has a gel perimeter for an additional layer of protection.
Features and Benefits
Made out of 100% TPU
Vented for cooling comfort
Optimal protection
Gel perimeter adds extra cushioning and protection
Athletically shaped
Hand wash
Specifications
Protects: Groin
Product Type: Protective Gear
Protective Gear Type: Athletic Cups
Age Group: Youth
Style: Protective Cups
Activity: Football
Gender: Boys'
What's in the Box
Shock Doctor Boys' BioFlex Pee-Wee Cup
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();