Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 026654434
ITEM: 4KT-100-04
The SKLZ Universal Kicking Tee features multiple height configurations that allow you to slowly transition toward kicking off the ground and can be used as a solo kickoff tee for regular or onside kicks or as a kicking block for field goals with a holder. The kicking tee features 2 molded rubber pieces for durability and gripping notches to hold the ball in place.
Features and Benefits
Multiple height configurations allow you to slowly transition toward kicking off the ground
2 molded rubber pieces for durability
Gripping notches hold the ball in place
Use as a solo kickoff tee for regular or onside kicks or as a kicking block for field goals with a holder
Specifications
Training Equipment Type: Kicking Accessories
Position: Kicker/Punter
Product Type: Football Training Equipment
Style: Kicking Tees
Activity: Football
Manufacturer warranty - general: 90 days limited
What's in the Box
SKLZ Universal Kicking Tee
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
NY, MN
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();