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: 140679650
ITEM: WVH9500-021
Head out on the town feeling confident in the Wolverine Adults' Embroidered Heavy Duty Canvas Logo Adjustable Cap. The 100% cotton construction offers a soft feel, and the embroidered logo and back woven logo ensures your brand pride. The durable snapback closure offers a custom fit, and the 100% cotton sweatband material adds additional comfort throughout the day.
Features and Benefits
100% cotton material provides comfort
100% cotton sweatband material delivers a soft feel
Embroidered logo and back woven logo showcases brand support
Durable snapback closure allows for an adjustable fit
Spot clean
Specifications
Clothing Type: Hats
Closure: Snap
Product Type: Headwear
Age Group: Adults'
Style: Adjustable Caps
Activity: Casual
Gender: Men's,Women's
Care: Spot clean
What's in the Box
Wolverine Adults' Embroidered Heavy Duty Canvas Logo Adjustable Cap
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();