Kala Artist - Kanekoa

Every time the Maui-based jam-band Kanekoa takes the stage, their improvisational blend of Hawaiian, rock, folk, blues, reggae, R&B and soul energizes the crowd – fueling the band's flourishing fandom of Koa-heads.

Kaulana Kanekoa (rhythm ukulele, lead vocals, lyrics), Vince Esquire (lead ukulele, backing vocals), Travis Rice (cajon/congas, kit, backing vocals), and Don Lopez (U•BASS, electric bass, backing vocals) have been playing together since the late 1990s. They have created a truly unique sound by embracing the yet-untapped potential of the electrified ukulele – and then taking it higher.

The band opened for Los Lobos on its recent Hawaiian tour, and has shared the stage and/or jammed with many top-notch talents including Willie Nelson, Jake Shimabukuro, Willie K, G Love, John Cruz, John Popper of Blues Traveler, and 7 Walkers, which is Grateful Dead drummer Bill Kreutzman's band. Kreutzman digs the band so much, he hired Kanekoa play his wedding – and dubbed them “The Hawaiian Grateful Dead.”

Inspired by the range of musical tastes of its players – and shaped by the land and culture of Hawai'i – Kanekoa delivers island fresh, innovative sets at every gig. The band's vast influences shine throughout both their original music and their interpretations of popular songs. When asked to describe Kanekoa's music, Uncle Don Lopez says simply: “It is American music steeped in Hawaiian tradition. Kanekoa's music can not be explained; it needs to be experienced.”


Ukulele of Choice
Solid Cedar Top Acacia Tenor (KA-ATP-CTG)
Artist on the Web

Website: http://www.kanekoaband.com/
Twitter: @kanekoamusic
Facebook: kanekoamusic
Instagram: kanekoamusic

// 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(); })();