X

Kala Learn To Play Soprano Ukulele Starter Kit

KALALTPS2105

$75.00 MSRP

Our classic beginner ukulele, the Kala Learn to Play Ukulele Starter Kit comes with everything you need to start playing today. This pack is perfe...
More Details →
X

Mandy Harvey Learn To Play Signature Series Tenor Ukulele

KALALTPMH2006

$149.00 MSRP

We are excited to announce the newest addition to our Learn To Play series—the Mandy Harvey Learn To Play Signature Series Tenor Ukulele! Mandy is...
More Details →
X

Kala Learn To Play Ukulele Concert Starter Kit

KALALTPC2105

$99.00 MSRP

Our classic beginner ukulele, the Kala Learn to Play Ukulele Concert Starter Kit comes with everything you need to start playing today. This pack ...
More Details →
X

Kala Learn To Play Ukulele Baritone Starter Kit

KALALTPB2105

$129.00 MSRP

New for 2023, the Kala Learn To Play Baritone pack comes with everything you need to start playing ukulele today. This pack is perfect for someone...
More Details →
X
new

Kala Learn To Play Recycled Color Chord™ Ukulele Starter Kit

KALA-R-LTP-CC-S

$59.00 MSRP

The Kala Color Chord® comes with everything you need to start playing songs today—now made using 100% Global Recycled Standard sourced plastic. 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(); })();