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
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: 135264100
ITEM: CVR1028AS
Protect your grill with the Even Embers Pellet Smoker Cover. 600 Denier polyester delivers lasting durability and defense against moisture and UV rays. The fabric resists mold and mildew while hook-and-loop straps ensure a secure fit.
Features and Benefits
Cover protects your smoker against the elements
600 denier polyester lends heavy-duty durability
All-weather fabric resists water and UV radiation
Prevents mold and mildew
Hook-and-loop straps ensure a secure fit
Fits pellet smokers
Specifications
Batteries Required: No
Number of Batteries: 0
Product Type: Grilling Accessories
Batteries Included: No
Style: Smoker Covers
Activity: Cooking
What's in the Box
Even Embers Pellet Smoker 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();