Your price after 5% discount when using your Academy Credit Card. Apply Now
25% Off Cooking Accessories When You Buy a Grill or Griddle. Up to 3 Accessories.
Quantity
STYLE IT WITH
about this product
SKU: 133824880
ITEM: 8259969P04
Protect your smoker with the Oklahoma Joe's Hondo Cover. The heavy-duty ripstop construction affords durability, while the built-in hook-and-loop straps offer a secure hold.
Features and Benefits
Provides efficient cover for the Oklahoma Joe's Highland Offset Smoker (sold separately)
Heavy-duty ripstop construction affords durability
Built-in hook-and-loop straps offer a secure hold
Specifications
Batteries Required: No
Number of Batteries: 0
Product Type: Grilling Accessories
Product weight (lb.): 4.5
Batteries Included: No
Style: Smoker Covers
Product Height (in.): 49
Activity: Cooking
Product width (in.): 58.5
Product depth (in.): 30.66
What's in the Box
Oklahoma Joe's Hondo Cover
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();