Kala Woody Jeep Sticker

Model: STICKER-WDY

$3

5.0
Rated 5.0 out of 5 stars
Based on 33 reviews
Total 5 star reviews: 33 Total 4 star reviews: 0 Total 3 star reviews: 0 Total 2 star reviews: 0 Total 1 star reviews: 0
100%would recommend this product
Slide 1 selected
33 reviews
  • MB Profile picture for Melane B.
    Melane B.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    Sticker

    Nostalgic sticker. Beach Boys vibe! Looks good on my Kala U-Bass case.

  • AS
    Anyssa S.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    Best Stickers

    I've been sticker slapping things for decades and I can tell you that the stickers I get the most compliments on are the Woody stickers. I love these stickers so much I wish I could have a hundred of them and just hand them out to everybody and spread happiness. Some of my ukuleles and several of my notebooks have them. I have a t-shirt with the pic too and anyone who doesn't have one yet should get one! It brings smiles to people's faces.

  • MT Profile picture for Matt T.
    Matt T.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    3 years ago
    Kala Woody Jeep Sticker

    Honestly, the only problem I have with this sticker is deciding where to stick it! I am a motovlogger, and we are crazy about our stickers. This is one of my favorites by far! If I had a pile of them I'd give them out to all my motovlogger friends.

  • DB
    Deb B.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    Yesterday
    Woody Sticker review

    Cool sticker!

  • VG
    Vicki G.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    Cool sticker

    Super cool, put it on my jeep as soon as I got it!

''
// Preorder Property Handler (function() { function initPreorderProperty() { // Check if this is a preorder product if (!window.isPreorderProduct) { return; } console.log('✅ Preorder product detected'); // Add property to form submissions function addPreorderToForm() { const addToCartButtons = document.querySelectorAll( '[name="add"], ' + 'button[type="submit"][name="add"], ' + '.product-form__submit, ' + '[data-add-to-cart], ' + 'button.add-to-cart, ' + 'button[name="add"]' ); addToCartButtons.forEach(function(button) { button.addEventListener('click', function(e) { const form = button.closest('form'); if (form && form.action && form.action.includes('/cart/add')) { let preorderInput = form.querySelector('input[name="properties[_preorder]"]'); if (!preorderInput) { preorderInput = document.createElement('input'); preorderInput.type = 'hidden'; preorderInput.name = 'properties[_preorder]'; preorderInput.value = 'true'; form.appendChild(preorderInput); console.log('✅ Added _preorder hidden input'); } } }); }); } // Intercept AJAX cart adds function interceptCartAjax() { const originalFetch = window.fetch; window.fetch = function(...args) { const [url, config] = args; if (url && (url.includes('/cart/add.js') || url.includes('/cart/add'))) { if (config && config.body) { try { // Handle JSON body if (typeof config.body === 'string') { const data = JSON.parse(config.body); if (!data.properties) { data.properties = {}; } if (!data.properties._preorder) { data.properties._preorder = 'true'; console.log('✅ Added _preorder to AJAX request'); } config.body = JSON.stringify(data); } // Handle FormData else if (config.body instanceof FormData) { if (!config.body.has('properties[_preorder]')) { config.body.append('properties[_preorder]', 'true'); console.log('✅ Added _preorder to FormData'); } } } catch (e) { console.error('Error modifying cart request:', e); } } } return originalFetch.apply(this, args); }; } // Initialize when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { addPreorderToForm(); interceptCartAjax(); }); } else { addPreorderToForm(); interceptCartAjax(); } } // Initialize initPreorderProperty(); })();