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

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

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

The Waterman® Swamp Monster T-Shirt

$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

U•BASS® 15th Anniversary White Long Sleeve Shirt

$20.00 MSRP $14.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 Black Long Sleeve Shirt

$20.00 MSRP $14.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

Kala Clay Sunset Stripe T-Shirt

$22.00 MSRP $19.00

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 Blue Sunset Stripe T-Shirt

$22.00 MSRP $19.00

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 Metropolitan Skyline T-Shirt

$20.00 MSRP $19.00

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

Vertical U•BASS® Logo T-Shirt

$20.00 MSRP $9.00

Hey U•BASS® fans! Are you looking for a way to show-off your appreciation for the Original, short-scale bass? This soft, charcoal heather gray t-s...
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 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

Classic U•BASS® Logo T-Shirt

TS4-BK-M

$20.00 MSRP $9.00

Check your local dealer for availability

Show off your U•BASS® pride with this official Kala U•BASS® tee! Available in Medium.
More Details →
X

Kala Hawaii Island Chain T-Shirt

$20.00 MSRP $20.00

Show off your ukulele pride with this Hawaiian Island Chain Kala tee!
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(); })();