Acoustic-Electric Deluxe U•BASS® Gig Bag

Model: DUB-UBASS

$50

Protect your U•BASS® with our deluxe gig bag designed specifically for the acoustic-electric U•BASS®. Available for all acoustic-electric models. 

4.5
Rated 4.5 out of 5 stars
Based on 8 reviews
Total 5 star reviews: 5 Total 4 star reviews: 2 Total 3 star reviews: 1 Total 2 star reviews: 0 Total 1 star reviews: 0
88%would recommend this product
8 reviews
  • M
    Melissa
    Rated 3 out of 5 stars
    13 hours ago
    3 Stars

    I have a Ubass but this bag barely fits it. Maybe it needs to stretch out? Regardless, im glad i have a cover for my UBass now.

  • TS
    Terrence S.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    The gig bag is ok

    It’s Fine👍🏾👍🏾

  • JC
    John C.
    Verified Buyer
    I recommend this product
    Rated 4 out of 5 stars
    2 years ago
    Good case at a good price.

    Competitive pricing, quality materials and quick shipping make this gig bag a winner in my books....

  • CM
    Christina M.
    Verified Buyer
    I recommend this product
    Rated 4 out of 5 stars
    3 years ago
    Almost exactly what I wanted

    I wanted a gig bag that has enough room to carry a small folding music stand inside with the U-bass, sturdy pack back straps and a decent sized outside pouch for my cord, extra strings, maybe some CD's and other items. I am generally very pleased with this bag. I gave it 4 stars because it is just a little more snug than ideal. I think it will stretch out some ( I hope).

  • KW
    Kelly W.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    3 years ago
    Quality case

    Nice soft case inside. Durable outside. Pocket a plus. Great quality.

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