X
new

Kala Revelator™ USA Baritone Ukulele String Set

KU-REV-B-WBF

$29.00 MSRP

At Kala we do our best to provide high quality string options for our players. For our Kala Revelator™ USA Baritone Ukulele String Set, we’ve teame...
More Details →
X
new

Aquila® B-Blacks Ukulele Strings

$9.99 MSRP

Aquila® B-Blacks strings combine swift responsiveness with rich, expressive tone. Crafted from renewable biomass sources, these strings deliv...
More Details →
X
Out of Stock

D'Addario® Pro-Arté Fluorocarbon Ukulele Strings

$8.99 MSRP

This product is temporarily unavailable online.

D’Addario® Pro-Arté Carbon treble strings deliver crisp, projecting tone, a contemporary sound utilized by trend-setting classical guitarists and u...
More Details →
X
Out of Stock

Kala Revelator™ USA Ukulele String Set

KU-REV-WBF

$22.00 MSRP

This product is temporarily unavailable online.

At Kala we do our best to provide high quality string options for our players. For our Kala Revelator™ USA Ukulele String Set, we’ve teamed up wit...
More Details →
X

D'Addario® Uke Titanium String Set

$6.00 MSRP

EJ87C is a string set for concert ukulele, utilizing Pro-Arté Titanium. Pro-Arté Titanium treble strings deliver bright tone, a contemporary sound ...
More Details →
X

D'Addario® Tenor Uke Nyltech 6 & 8-String Set

$10.00 MSRP

EJ88T-6 and EJ88T-8 are string sets for 6 and 8-string tenor ukulele, respectively. They are optimized for GCEA tuning. Nyltech strings utilize a p...
More Details →
X

D'Addario® Uke Clear Nylon Set

$7.00 MSRP

EJ65C is a string set for concert ukulele, utilizing Pro-Arté Nylon trebles. Pro-Arté Custom Extruded Nylon sets the standard in terms of ukulele t...
More Details →
X

Kala Elite USA Brown Fluorocarbon Strings

KU-ELT-BF

$29.00 MSRP $22.00

At Kala we do our best to provide high quality string options for our players. For our Kala Elite USA Ukulele String Set, we’ve teamed up with one...
More Details →
X

Aquila Lava® Ukulele Strings

$12.99 MSRP

Lava® strings were inspired by volcanos, a Hawaiian symbol of life, and are Aquila’s respectful homage to the Hawaiian people who helped make the ...
More Details →
X

Aquila Bionylon® Ukulele Strings

$8.99 MSRP

Bionylon® strings are the first eco-friendly synthetic string in the world. The smooth white Bionylon® strings are made of a 68% plant-derived cast...
More Details →
X

Aquila Red® Ukulele Strings

$12.99 MSRP $12.99

Check your local dealer for availability

Aquila’s Red® strings produce a deeper tone by changing the weight of the material rather than increasing its gauge. By keeping the gauge thinner a...
More Details →
X

Aquila Super Nylgut® Ukulele Strings

$11.99 MSRP $11.99

Super Nylgut® strings are the upgraded version of Aquila’s New Nylgut® strings. The smooth pearl white Super Nylgut® strings are stronger and less ...
More Details →
X

Aquila Nylgut® Ukulele Strings

$11.99 MSRP $9.99

Aquila’s New Nylgut® strings are made from a plastic compound made of three synthetic components, the first genuine synthetic gut string in the wor...
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(); })();