X

Kala Klipz Recharge

$16.00 MSRP $12.00

Our first rechargeable, the Kala Klipz Recharge clip-on tuner has Chromatic, Guitar, Bass, Ukulele, and Violin tuning settings to get most any stri...
More Details →
X

Kala Woody T-Shirt

$26.00 MSRP $26.00

An original Kala design, the Kala Woody T-Shirt was inspired by touring around in the "woody:" the classic beach station wagon! Hop into this Woody...
More Details →
X

Kala Planted Tree T-Shirt

$20.00 MSRP $20.00

Oh Kala! Oh Kala! How do your ukuleles grow? Planted in 2005, putting down roots and spreading out branches ever since, celebrate the grass roots, ...
More Details →
X

Kala U•BASS Sticker

STICKER-UBASS

$3.00 MSRP

More Details →
X

Kala Woody Jeep Sticker

STICKER-WDY

$3.00 MSRP

More Details →
X

Kala USA Circle Sticker

STICKER-USA

$2.99 MSRP

More Details →
X

Kala Oval Logo Sticker

STICKER-SURF

$3.00 MSRP

More Details →
X

Music Nomad Humilele - Ukulele Humidifier

MN-UH

$10.00 MSRP

Kala recommends the MusicNomad Humilele Humidifier for humidity drops below 40%. The ideal safe zone for a ukulele is an environment with 45-55% hu...
More Details →
X

D'Addario Pro-Arté

EJ45

$11.99 MSRP

EJ45, normal tension, is D'Addario's best-selling classical set, preferred for its balance of rich tone, comfortable feel and dynamic projection.EJ...
More Details →
X

Kala Metropolitan Skyline T-Shirt

TS-SOUVENIR-NAVY-XS

$20.00 MSRP

An original Kala design, our Kala Metropolitan Skyline T-Shirt is a celebration of ukulele clubs, festivals, and communities popping up across citi...
More Details →
X

Kala Blue Sunset Stripe T-Shirt

TS-STRIPE-BLU-XS

$22.00 MSRP

An original Kala design, the Kala Sunset Stripe T-Shirt was inspired by California's surf culture and our favorite retro surfboard color palette. I...
More Details →
X

Kala Surf T-Shirt

TS-SURF-BLK-S

$22.00 MSRP

With a classic look inspired by the lush foliage found on the Hawaiian Islands, the Kala Surf Logo T-Shirt features Kala’s bright and cheerful hibi...
More Details →
X

Kala Clay Sunset Stripe T-Shirt

TS-STRIPE-CLAY-XS

$22.00 MSRP

An original Kala design, the Kala Sunset Stripe T-Shirt was inspired by California's surf culture and our favorite retro surfboard color palette. I...
More Details →
X

U•BASS® 15th Anniversary Black Long Sleeve Shirt

$20.00 MSRP $15.00

Commemorate 15 years of the original U•BASS® with this long sleeve, 100% cotton t-shirt. Featuring the now iconic U•BASS® logo on the back and down...
More Details →
X

U•BASS® 15th Anniversary White Long Sleeve Shirt

$20.00 MSRP $15.00

Commemorate 15 years of the original U•BASS® with this long sleeve, 100% cotton t-shirt. Featuring the now iconic U•BASS® logo on the back and down...
More Details →
X

The Waterman® Swamp Monster T-Shirt

TS-MONSTER-WHITE-S

$22.00 MSRP

The Waterman® has charms to soothe the savage beast! Drawing inspiration from classic cinema, the original illustration on The Waterman® Swamp Mon...
More Details →
X

Youth Kala Blue Sunset Stripe T-Shirt

TS-STRIPE-BLU-YM

$22.00 MSRP

An original Kala design, the Kala Sunset Stripe T-Shirt was inspired by California's surf culture and our favorite retro surfboard color palette. I...
More Details →
X

Youth Kala Woody T-Shirt

TS-WOODY-BLK-YM

$26.00 MSRP

An original Kala design, the Kala Woody T-Shirt was inspired by touring around in the "woody:" the classic beach station wagon! Hop into this Woody...
More Details →
X
new

Kala 20th Anniversary T-Shirt

$26.00 MSRP $26.00

Commemorate 20 years of Kala with this short-sleeve, 100% cotton t-shirt. Featuring the 20th Anniversary California Poppy crest front and center. A...
More Details →
X
new

Color Chord Sticker Sheet

STICKER-LTP-CC

$7.00 MSRP

Build a growing Chord Library with the new Color Chord Sticker Sheet. This sheet features stick-on fretboard markers for the first 4 chords taught ...
More Details →
// 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(); })();