Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160583313
ITEM: 202128214
This '47 Ballpark Offside Adjustable Hat is a perfect way to rep your Texas Rangers everywhere you go This adjustable hat features a classic five-panel design complete with embroidered eyelets for breathability The curved bill and structured fit offer a timeless look while the embroidered team logo on the front proudly displays your Texas Rangers pride
Features and Benefits
Mid Crown
Snap Closure
Material: 100% Wool
One size fits most
Embroidered team logo at front panel with raised details
Wipe clean with a damp cloth
Officially licensed
Five-panel construction with mid and rear eyelets
Structured fit
Contrast-color undervisor
Curved bill
Brand: '47
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();