X

Pink Burst Soprano Dolphin Ukulele

MKSDPKBURST2006

$69.00 MSRP

The Makala Dolphin line is an excellent first ukulele to dive in with. The Dolphin comes in an assortment of colors with a classic look that soun...
More Details →
X

Surf Green Soprano Shark Ukulele

MKSSGRN2006

$69.00 MSRP

The Makala Shark line is well-suited for casual players looking for something colorful and fun to sink their teeth into. The Shark is a terrific ...
More Details →
X
Out of Stock

Light Blue Burst Soprano Dolphin Ukulele

MKSDLBLBURST2006

$69.00 MSRP

This product is temporarily unavailable online.

The Makala Dolphin line is an excellent first ukulele to dive in with. The Dolphin comes in an assortment of colors with a classic look that soun...
More Details →
X

Mako Blue Soprano Shark Ukulele

MKSSBLU2006

$69.00 MSRP

The Makala Shark line is well-suited for casual players looking for something colorful and fun to sink their teeth into. The Shark is a terrific ...
More Details →
X

Purple Burst Soprano Dolphin Ukulele

MKSDPLBURST2006

$69.00 MSRP

The Makala Dolphin line is an excellent first ukulele to dive in with. The Dolphin comes in an assortment of colors with a classic look that soun...
More Details →
X
Out of Stock

Blacktip Soprano Shark Ukulele

MKSSBLK2006

$60.00 MSRP

This product is temporarily unavailable online.

The Makala Shark line is well-suited for casual players looking for something colorful and fun to sink their teeth into. The Shark is a terrific ...
More Details →
X
Out of Stock

Red Burst Soprano Dolphin Ukulele

MKSDRDBURST2006

$60.00 MSRP

This product is temporarily unavailable online.

The Makala Dolphin line is an excellent first ukulele to dive in with. The Dolphin comes in an assortment of colors with a classic look that soun...
More Details →
X

Great White Soprano Shark Ukulele

MKSSWHT2006

$69.00 MSRP

The Makala Shark line is well-suited for casual players looking for something colorful and fun to sink their teeth into. The Shark is a terrific ...
More Details →
X
Out of Stock

Fluorescent Watermelon Pink Soprano Waterman

KA-SWF-PK

$49.00 MSRP $34.00

This product is temporarily unavailable online.

The durable, water-resistant ukulele. Plays perfectly anywhere! Excellent for School Programs Water-resistant Durable Easy to Clean ABS Composite...
More Details →
X
Out of Stock

Fluorescent Blue Raspberry Soprano Waterman

KA-SWF-BL

$49.00 MSRP $45.00

This product is temporarily unavailable online.

The durable, water-resistant ukulele. Plays perfectly anywhere! Excellent for School Programs Water-resistant Durable Easy to Clean ABS Composite...
More Details →
X
Out of Stock

Yellow Burst Soprano Dolphin Ukulele

MKSDYLBURST2006

$60.00 MSRP

This product is temporarily unavailable online.

The Makala Dolphin line is an excellent first ukulele to dive in with. The Dolphin comes in an assortment of colors with a classic look that soun...
More Details →
X
Out of Stock

Green Apple Burst Soprano Dolphin Ukulele

MKSDGRNBURST2006

$60.00 MSRP

This product is temporarily unavailable online.

The Makala Dolphin line is an excellent first ukulele to dive in with. The Dolphin comes in an assortment of colors with a classic look that soun...
More Details →
X
Out of Stock

Red Sea Soprano Shark Ukulele

MKSSRED2006

$60.00 MSRP

This product is temporarily unavailable online.

The Makala Shark line is well-suited for casual players looking for something colorful and fun to sink their teeth into. The Shark is a terrific ...
More Details →
X

Amethyst Purple Transparent Soprano Waterman

KA-WMT-PL-S

$59.00 MSRP

Meet the durable, water-resistant ukulele that plays perfectly anywhere! Inspired by the phenomenon of sea glass and its many vibrant shades, this...
More Details →
X
Out of Stock

Sea Urchin Purple Soprano Shark Ukulele

MKSSPUR2006

$60.00 MSRP

This product is temporarily unavailable online.

The Makala Shark line is well-suited for casual players looking for something colorful and fun to sink their teeth into. The Shark is a terrific ...
More Details →
X

Amber Yellow Transparent Soprano Waterman

KA-WMT-YL-S

$59.00 MSRP

Meet the durable, water-resistant ukulele that plays perfectly anywhere! Inspired by the phenomenon of sea glass and its many vibrant shades, this...
More Details →
X

Adobe Red Watercolor Meranti Concert Ukulele

KA-MRT-RED-C

$89.00 MSRP $79.00

Our Watercolor Meranti Ukuleles are awash in rich hues. The semi-transparent stain allows the Meranti wood grain to show through, highlighting the ...
More Details →
X

Adobe Red Watercolor Meranti Soprano Ukulele

KA-MRT-RED-S

$79.00 MSRP $69.00

Our Watercolor Meranti Ukuleles are awash in rich hues. The semi-transparent stain allows the Meranti wood grain to show through, highlighting 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(); })();