U•BASS® 15th Anniversary Black Long Sleeve Shirt

Model: TS-LS-UB15-BLK-S

$20 $14

Commemorate 15 years of the original U•BASS® with this long sleeve, 100% cotton t-shirt. Featuring the now iconic U•BASS® logo on the back and down the right sleeve, with the road toad that adorns the U•BASS® headstock on the front, celebrate this short-scale bass in comfortable style.

Learn all about the Kala U•BASS®, from its genesis to today, at kalabrand.com/ubass-story

Also Available in White.

4.8
Rated 4.8 out of 5 stars
Based on 5 reviews
Total 5 star reviews: 4 Total 4 star reviews: 1 Total 3 star reviews: 0 Total 2 star reviews: 0 Total 1 star reviews: 0
100%would recommend this product
5 reviews
  • RM
    Ronald M.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    2 hours ago
    Sooooo good!

    Great fit and soft and comfortable. Not too thick. Think I’ll grab one in XXL too!

  • GS
    gas s.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    4 days ago
    She loves it

    Started playing a UBass about seven years ago, and love it and now the shirt

  • BL
    Ben L.
    Verified Buyer
    I recommend this product
    Rated 4 out of 5 stars
    2 weeks ago
    Nice shirt

    Love the design; Glad I bought a large, since it shrunk in the wash. Lightweight, so better as a spring/fall shirt.

  • RD
    Roland D.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    2 months ago
    Awesome !

    Very comfortable, and stylish. Letting people know I support Kala Bass

  • MB
    Melane B.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    10 months ago
    Shirt

    Love the U-Bass shirt! Just today ordered the 15th Anniversary U-Bass Ukulele! Can’t wait! This will be #6 in U-Basses.

Reviews LoadedReviews Added
''
// 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(); })();