X

Black Satin Mahogany Soprano Ukulele

KA15SBLK2006

$69.00 MSRP $65.00

The KA-15 Series is Kala’s flagship Mahogany collection and has become an industry standard. The traditional design is highlighted with a satin fin...
More Details →
X

Black Maple Banjo Concert Ukulele with Bag

KA-BNJ-C

$429.00 MSRP

A fan-favorite from our Americana Series, the Black Maple Banjo Concert Ukulele is patterned after banjoleles from the 1920s and 1930s, when the i...
More Details →
X

Galaxy Black Sparkle Concert Ukulele

KASPRKBLACK2006

$129.00 MSRP $99.00

Welcome to the Roaring 2020’s! 1920 would have been jubilant to have these glittery, glamorous ukuleles! So classy—with colors like Ritzy Red, Pink...
More Details →
X
new

Solid Body Electric Sunny & The Black Pack Signature Tenor Ukulele

KA-SB-SUN-T

$329.00 MSRP $299.00

The performer’s dream, the agile Kala Solid Body Electric Ukulele brings a brand-new dimension to the world of ukulele recording, studio use, and a...
More Details →
X
new

Black Sand Concert Recycled Waterman

KA-R-WMS-BK-C

$69.00 MSRP

This durable eco-conscious ukulele is water-resistant and travel friendly, making it a great companion for relaxing wherever the day takes you. The...
More Details →
X
new

Revelator™ Nautilus Horizon Black Night Mango Tenor Ukulele

KA-NS-BLK-MNG-TE

$999.00 MSRP

The Revelator™ Nautilus Horizon Black Night Mango Tenor showcases the stunning beauty of a highly figured mango top with a dramatic black transpare...
More Details →
X
new

Black Sand Soprano Recycled Waterman

KA-R-WMS-BK-S

$59.00 MSRP

This durable eco-conscious ukulele is water-resistant and travel friendly, making it a great companion for relaxing wherever the day takes you. The...
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(); })();