Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 154642241
ITEM: FR3V4X
Keep yourself protected while playing sports using the Champro Adults' Air Tech Rib Vest. Made with breathable mesh fabric for comfort and swear resistance, this vest comes with an elasticized spine pad to provide enhanced rear protection.
Features and Benefits
Lightweight, breathable mesh fabric offers comfort and breathability
High-impact pad system provides extra protection
Elasticized spine pad provides rear impact protection
Hook and loop adjustment for a custom fit
Specifications
Protects: Ribs
Product Type: Protective Gear
Protective Gear Type: Football Pads
Age Group: Adults'
Activity: Training,Football
Style: Rib Protectors
Gender: Men's,Women's
What's in the Box
Champro Adults' Air Tech Rib Vest
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();