Motion Boom Plus | Outdoor Portable Speaker (2024)

0 / 0

Motion Boom Plus | Outdoor Portable Speaker (7)

Motion Boom Plus | Outdoor Portable Speaker (8)

Motion Boom Plus | Outdoor Portable Speaker (9)

Motion Boom Plus | Outdoor Portable Speaker (10)

Motion Boom Plus | Outdoor Portable Speaker (11)

Motion Boom Plus | Outdoor Portable Speaker (12)

Lightweight and Ultra-Portable for Outdoor Listening

  • Incredible Sound Loved by 20 Million+ People
  • Epic Outdoor Sound: 80W booming sound is delivered by two 30W woofers and 10W tweeters, while real-time intensified bass can be heard with Soundcore's proprietary BassUp technology. To improve treble performance of Motion Boom Plus outdoor speaker, titanium drivers ensure an all-around epic sound.
  • Lightweight and Ultra-Portable: Take your tunes everywhere you go with Motion Boom Plus Bluetooth speaker's built-in handle and detachable strap.
  • 20-Hour Playtime: Motion Boom Plus outdoor speaker is equipped with a 13,400mAh battery capacity with 20 hours of playtime to save you the trouble of frequent charging and make listening more enjoyable.
  • Water and Dust Resistant: With an IP67 certification, you'll never have to worry about water splashes, rain, accidental spills, or dust while you're out and about with your Motion Boom Plus outdoor speaker.
  • Note : For peak performance, please use the soundcore app and update to the latest firmware.

Model Number: A3129

2. Can I redeem multiple discount codes?

No. Discount codes cannot be combined.Only one code can be applied per order.

3. Why is my discount code invalid?

1) The discount code is not applicable to the specific items you want to buy

2) The discount code wasn't entered correctly

3) The discount code has expired

4) The discount code is not from soundcore's official website

If you have any questions,please feel free to reach out to our customer service team:service@soundcore.com

"); } function getMemberOrQuerySaving({price, sku, codeSave = 0}) { const memberDiscount = ShopMetafields.discountMember const memberWeekDiscount = ShopMetafields.discountMemberWeek const memberJoined = sessionStorage.getItem('memberJoined') const memberDiscountFromScript = ShopMetafields.scriptDiscountMember const queryDiscount = ShopMetafields.discountQuery const queryDiscountFromScript = ShopMetafields.scriptDiscountQuery let save; let withBundleOrGift = $('.product-free-gift .gift-list .gift-title').length || $('.product-bundle .bundle-list .bundle-title').length if (withBundleOrGift) { return save } if ( memberDiscount?.active && Boolean("") && !memberDiscountFromScript?.excludeSkus?.includes(sku) ) { const memberSave = new Decimal(price).times(memberDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); }else if(memberWeekDiscount?.active && Boolean("") && memberJoined){ // start_ai_generated const memberSave = new Decimal(price).times(memberWeekDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); // end_ai_generated } else if ( queryDiscount?.active && !queryDiscountFromScript?.excludeSkus?.includes(sku) ) { const queryValue = getQueryVariable(queryDiscount.queryKey); if (queryValue == queryDiscount.queryValue) { const querySave = new Decimal(queryDiscount.discount).times(price); save = new Decimal(codeSave).plus(querySave).toNumber(); } } return save } function showDiscountBox(sku) { if (couponsData[sku] && couponsData[sku][0]) { let currentData = couponsData[sku][0]; ShowCode(currentData); if (window.GsapScrollTrigger) ScrollTrigger.refresh() } else { const memberOrQuerySaving = getMemberOrQuerySaving({ price: jsVariant.price, sku, }); if(memberOrQuerySaving > 0){ if ($('.product-marketing-module .product__marketing_module_coupon').length) { if ($('.product-marketing-module .product__marketing_module_coupon').data("show_discounts") === 'false') { return } } $('.sale.savings').text(`You Save: ${Shopify.formatMoney(memberOrQuerySaving)}`) } $('.couponWrapper').hide(); $('.DiscountMark').hide(); } } function ShowCode(data) { // 展示code文案 $('#couponCode').text(data.title); copyCodeTxt = data.title; // 展示折扣数值 let DiscountTxt; let DiscountedPrice; let savePrice; let price = jsVariant.price; let savingsAfterDrop = Number($('.price-container').data('savings') || 0); let currentPriceAfterDrop = Number($('.price-container').data('current-price') || 0) price = currentPriceAfterDrop || price let codeMoney = 0 if (data.value_type === "fixed_amount") { DiscountTxt = data.value_style; DiscountedPrice = Shopify.formatMoney(price + Number(data.value) * 100) savePrice = Math.abs(data.value) * 100 codeMoney = Math.abs(data.value) } else if (data.value_type === "percentage") { const savePriceValue = price * Math.abs(Number(data.value) / 100) DiscountTxt = Math.abs(parseInt(data.value)) + "%"; DiscountedPrice = Shopify.formatMoney(price - savePriceValue); savePrice = savePriceValue; }; $('.couponWrapper').data('code-money', codeMoney) $('#DiscountTxt').text(DiscountTxt); $('#DiscountMarkTxt').text(DiscountTxt); // 失效时间判断 let endsTime = data.ends_at ? new Date(data.ends_at).valueOf() : null; if (endsTime) { timeLine = setInterval(function() { nowTime = new Date().getTime(); let distance = endsTime - nowTime; if (distance < 0) { clearInterval(timeLine); $('.couponWrapper').hide(); $('.DiscountMark').hide(); $('.product__information .modal_price .salePrice').remove(); $('.product__information .current_price').removeClass("UnderscorePrice"); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 let days = Math.floor(distance / (1000 * 60 * 60 * 24)); let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); let minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); let seconds = Math.floor((distance % (1000 * 60)) / 1000); if(days >= 7) { $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Sale Ends soon.'); } else if (days === 1) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Day ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`Today ${hours}:${minutes}:${seconds}`); } else { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Days ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Sale Ends soon.'); } const memberOrQuerySaving = getMemberOrQuerySaving({ price: new Decimal(price).minus(savePrice), codeSave: savePrice, sku: data.sku, }); if ($('.product-marketing-module .product__marketing_module_coupon').length) { if (!$('.product-marketing-module .product__marketing_module_coupon').data("show_discounts")) { return } } if(memberOrQuerySaving > 0) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(memberOrQuerySaving))}`) } else if (!savingsAfterDrop) { if ($('.product__information .modal_price .salePrice').length == 0 || $('.product__information .current_price .salePrice').text() != DiscountedPrice) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(savePrice))}`) } } } function copyCouponCode() { execCoy(copyCodeTxt); $('.copyTextReplace').show(); $('.copyText').hide(); setInterval(function(){ $('.copyTextReplace').hide(); $('.copyText').show(); }, 3000); } function execCoy(text) { const input = document.createElement('INPUT'); input.style.opacity = 0; input.style.position = 'absolute'; input.style.left = '-100000px'; document.body.appendChild(input); input.value = text; input.select(); input.setSelectionRange(0, text.length); document.execCommand('copy'); document.body.removeChild(input); return true; }})

Motion Boom Plus | Outdoor Portable Speaker (13)

soundcore guarantees that we will refund you the difference if you find a lower price on the soundcore website within 30 days of your purchase.

Your purchase must have been made within the last 30 days. You must email us a screenshot of the lower price. The refund is only applicable during the promotional period.

Motion Boom Plus | Outdoor Portable Speaker (14)

Want priority shipping? Become a member >

Conditions: Orders completed on business days before 1PM PT will be shipped the same day. Later orders will be shipped the next business day.

Join our Registry, and create your own wish list for gifts now!

${v.price}

${txt} `; }).join(''); $('.custom_variants_prescription_box').html(`

${MF.options_tit}

    ${dom}

`); $('.custom_variants_prescription').removeClass('swap--visible'); if (MF.show_prescription_txt) { const processDom = MF.process.map((v, i) => { const show = v.icon ? '' : 'swap--visible' return `

  • Motion Boom Plus | Outdoor Portable Speaker (15) Motion Boom Plus | Outdoor Portable Speaker (16)

    ${v.tit}

    ${v.desc}

  • ` }).join(''); const processTxtDom = MF.process_txt.map((v, i) => { const show = v.desc ? '' : 'swap--visible' return `

    ${v.tit}
      ${v.list}

    ${v.desc}

    ${v.tips}

    ` }).join(''); $('.prescription_txt').html(`

    ${MF.title}
      ${processDom}

    ${processTxtDom}

    `) $('.prescription_txt').removeClass('swap--visible') } else { $('.prescription_txt').addClass('swap--visible') } if (MF.hideQty == true) { $('.product_quantity, .purchase-details__quantity').addClass('swap--visible') $('.product_swatch').addClass('prescription') } else { $('.product_quantity, .purchase-details__quantity').removeClass('swap--visible') $('.product_swatch').removeClass('prescription') } } $(function() { if (custom_variants_prescription) { if (custom_variants_prescription.data.includes(v => v.sku == sku) > -1) { showPrescriptionBox(custom_variants_prescription.data, 'A3129011', custom_variants_prescription) } } })

    Email me when available

    Leave your email address and we will notify you when the product is back in stock.

    Motion Boom Plus | Outdoor Portable Speaker

    (Optional) Join our soundcore email list to get special offers and more.

    • Incredible Sound Loved by 20 Million+ People
    • Epic Outdoor Sound: 80W booming sound is delivered by two 30W woofers and 10W tweeters, while real-time intensified bass can be heard with Soundcore's proprietary BassUp technology. To improve treble performance of Motion Boom Plus outdoor speaker, titanium drivers ensure an all-around epic sound.
    • Lightweight and Ultra-Portable: Take your tunes everywhere you go with Motion Boom Plus Bluetooth speaker's built-in handle and detachable strap.
    • 20-Hour Playtime: Motion Boom Plus outdoor speaker is equipped with a 13,400mAh battery capacity with 20 hours of playtime to save you the trouble of frequent charging and make listening more enjoyable.
    • Water and Dust Resistant: With an IP67 certification, you'll never have to worry about water splashes, rain, accidental spills, or dust while you're out and about with your Motion Boom Plus outdoor speaker.
    • Note : For peak performance, please use the soundcore app and update to the latest firmware.

    See More

    test

    Customer Reviews

    Based on 987 reviews

    90%

    (884)

    10%

    (96)

    0%

    (4)

    0%

    (0)

    0%

    (3)

    P

    Preston McMullen

    WORST CUSTOMER SERVICE - EVER.

    This very expensive speaker literally will NOT turn on. I have 3 others that I bought at the SAME time all working with no issues. I presented multiple pictures and documentation to SoundCore. SoundCore simply denied to look at the device even for a simple manufactures malfunction. This is beyond poor customer service for a "reputable" company like SoundCore. I will be finding a new source for my speakers moving forward. FYI I have 12+ SoundCore speakers. They are great, except when you actually need troubleshooting and support. 1 Star at best. I would give them 0 STARS for customer service.

    -EXTREMLY DISAPPOINTED

    Motion Boom Plus | Outdoor Portable Speaker (17) Motion Boom Plus | Outdoor Portable Speaker (18) Motion Boom Plus | Outdoor Portable Speaker (19)

    C

    Customer

    WOWEE

    I have had this for about 8 months now, so it’s time for a review. A couple Minor things i would like to mention first,
    1. You can only turn the speaker OFF via the app, you cannot turn it on.
    2. The usb port cover can be REALLY difficult to get off sometimes, causing me to just leave it open if im not outdoors.
    The Quality on this is a lot better than I was originally expecting, and the waterproofing is no joke. I have dropped it in a river and chased it(yes it was funny to everyone present). It flew off our boat, and both. Times it floated and worked fine after. I have had to rinse it off a couple times with a hose too.(a dusty Teryx ride had good color changing effects on this, lol). Despite being put through hell in the water, and being dropped, kicked, sent skidding etc, this thing keeps on going. The sound quality is Excellent out of the box(and I forgot about the break in period, but fully charged it first). You get a cord, instructions, a shoulder strap, and the Soundcore Motion Boom plus. It has also passed my, “can you still hear it tests”, which include; over the mower, the car with the from 2 windows down going 75(the speed limit of most highways near me), and the vacuum. It passed all of these, but it was close for the car.
    Upon “power on”, you WILL hear a sound out of the box. You cannot play anything out of this box before the power on and connected sounds go off. You can turn them off by, opening the app, pressing on the wanted speaker, hitting the three dots at the top right of your screen above the little power button, then turning “voice prompt” off. It will save this setting, and you will no longer hear the sounds. After this, you can start playing music as soon as the power button on the speaker itself lights up. While on lights, it may be a good spot to say this, the backlight on the buttons is imposible to see outdoors, so you never know if the bass button is active(if you have you phone on you, you can toggle this in the app). The charging is 5.5 hours, which is great, the battery does indeed last a lifetime, and the output for the usb is 2.1amp. I am saying this because the ink on the bottom wore off pretty quick when I tried to read it. Yes, the bass is VERY good, and can be felt in your chest if placed in the correct spot. Other than that, I would recommend this speaker 100%!

    Motion Boom Plus | Outdoor Portable Speaker (20) Motion Boom Plus | Outdoor Portable Speaker (21) Motion Boom Plus | Outdoor Portable Speaker (22)

    A

    Antonio Piloto

    Never knew

    Never knew how many people hate black music �

    Motion Boom Plus | Outdoor Portable Speaker (23)

    b

    bud a.

    Best boom box

    This soundcore motion boom is absolutely the BEST sounding box I've had compared to bose and jbl extreme 2 ...quality of sound surpasses them

    Motion Boom Plus | Outdoor Portable Speaker (24)

    J

    Jorge Montiel

    El sonido me sorprende la calidad del bajo

    Buen sonido recomendada se codea con las marcas reconocidas de renombre espero que sigan mejorando y se mantengan a precio accesible sonido sorprendente excelente bajo

    Motion Boom Plus | Outdoor Portable Speaker (25)

    Motion Boom Plus | Outdoor Portable Speaker (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Tyson Zemlak

    Last Updated:

    Views: 5683

    Rating: 4.2 / 5 (63 voted)

    Reviews: 94% of readers found this page helpful

    Author information

    Name: Tyson Zemlak

    Birthday: 1992-03-17

    Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

    Phone: +441678032891

    Job: Community-Services Orchestrator

    Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

    Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.