Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 150162937
ITEM: CEWS1018
Enhance the move of the attached soft plastic with the Core Tackle Wacky Shot 1/8 oz Rigs 3-Pack. Strategic weight placement improves the fall rate, elevates vibration levels and increases attraction, while a custom hitchhiker keeps the bait secure for extra hook gap and hooking percentage.
Features and Benefits
Suitable for freshwater bass fishing
Strategic weight placement improves the fall rate, elevates vibration levels and increases attraction
Custom hitchhiker keeps the bait secure for extra hook gap and hooking percentage
1/0 hook size
1/8 ounces
Specifications
Product Type: Fishing Hooks
Activity: Fishing
Style: J-Hooks
What's in the Box
Core Tackle Wacky Shot 1/8 oz Rigs 3-Pack
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();