soundcore AeroFit Pro Left and Right Earbuds - White (2024)

0 / 0

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').length || $('.product-bundle').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! Offer 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! Offer 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; }})

Sold Out

soundcore AeroFit Pro Left and Right Earbuds - White (2)

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.

${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 `

  • soundcore AeroFit Pro Left and Right Earbuds - White (3) soundcore AeroFit Pro Left and Right Earbuds - White (4)

    ${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, 'A3871021-80', custom_variants_prescription) } } })

    Email me when available

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

    soundcore AeroFit Pro Left and Right Earbuds - White

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

    • Authentic parts manufactured by soundcore

    • Compatible with soundcore AeroFit Pro - White

    See More

    soundcore AeroFit Pro Left and Right Earbuds - White

    soundcore AeroFit Pro Left and Right Earbuds - White (2024)

    FAQs

    Can you use earbuds to answer calls? ›

    You can answer and end calls with the earbuds' onboard controls. If you're looking for buds with more call-centric features, consider the Jabra Elite 7 Pro True Wireless instead.

    How do you answer calls with Soundcore earbuds? ›

    You can answer a call with your soundcore liberty 4 simply by double taping on any of the earbuds. For most earbuds, the touch sensor allows you to take a call with just a tap on either the right or left earbud.

    What do I do if one of my Soundcore earbuds is not working? ›

    Put the earbuds into the charging case and close for 10 seconds, then open the charging case to try pairing again. If that doesn't work, try the following: 1- Make sure your headphones are fully charged. 2- Make sure that the volume is turned up on both the headphone and the connected device.

    How do I get both Soundcore earbuds to work at the same time? ›

    Step 1: Place both life note and life note L in the case. Step 2: Hold buds for 10 sec (within case) until the red light flashes for 3 times. Step 3: Pick the earbuds ( note life and note life L ) together from case. Step 4: Pair with a earbud and wait for it to connect with the other.

    How do I get my Bluetooth headphones to answer calls? ›

    Once your mobile phone is paired with your bluetooth headset your headset will beep every time your phone rings. All you need to do is hit the button on the side of the headset and it will answer the call. You do not need to touch the mobile phone at all and it can be left where it is.

    Can you make and receive calls with earbuds? ›

    Yes, you can use TWS (True Wireless Stereo) earbuds for phone calls. Most TWS earbuds have built-in microphones that allow you to make and receive phone calls hands-free.

    How do you answer wireless earbuds? ›

    Answer or decline a call
    1. To answer the call, double tap the touchpad.
    2. To decline the call, touch and hold the touchpad.
    3. To end the call, double tap the touchpad.
    4. On Galaxy Buds or Buds+, you can turn off the microphone while on a call by touching and holding the touchpad during a call so the other party cannot hear you.

    Do soundcore earbuds have a microphone? ›

    Soundcore Anker Life P2 True Wireless Earbuds with 4 Microphones, CVC 8.0 Noise Reduction, Graphene Driver, Clear Sound, USB C, 40H Playtime, IPX7 Waterproof, Wireless Earphones for Work(Renewed)

    Why is only one of my earbuds working correctly? ›

    One side of the earphone is not working

    First, check to see if the volume on your device is turned up all the way. If it is, then the problem may be internal. If not, try turning it up. Another possible problem may be a build-up of dirt and debris, the solution to which is cleaning the earphone jack with a cotton swab.

    Why is only one Soundcore Life earbuds working? ›

    - Remove the protective film covering the connectors on the earbuds. - Reboot the Bluetooth device, such as a phone or computer. Forget all the pairing records on your device and turn off Bluetooth. - Reset the earbuds as per the steps below and make sure your earbuds have enough battery.

    Why won't both my earbuds play together? ›

    True Wireless Earbuds can sometimes un-sync from one another requiring a manual reset to enable them to auto sync to one another.

    Why are my Soundcore earbuds not pairing together? ›

    When you're trying to set up your Bluetooth devices, they might not connect if their range is too far apart or they aren't in pairing mode. If this problem persists despite multiple tries on both sides of the connection process, try resetting them!

    Why are my Soundcore earbuds not connecting to each other? ›

    Try reducing the distance between your right earbud and your audio device, like having your audio device in your right pocket or right side. Your right Soundcore earbud is the master (main) earbud. It connects to your audio device and to the left earbud.

    How do you connect earbuds to calls? ›

    Put the earbuds into pairing mode. This might involve pressing a button or opening the case. Then, with the phone's Bluetooth turned on, select the earbuds from the Bluetooth settings screen. Tap Pair or follow any other final on-screen directions.

    Can you answer calls with wireless headphones? ›

    The other option is to press the appropriate button on your Bluetooth headset when a call comes in, which will cause the headset to turn on and answer the call so that you never have to touch your phone.

    Do earbuds have a microphone? ›

    Thanks to their portable and convenient design, earbuds and in-ears can be excellent daily headphones. However, they generally don't have the best microphone quality, especially if they rely on a Bluetooth connection.

    References

    Top Articles
    Latest Posts
    Article information

    Author: Kimberely Baumbach CPA

    Last Updated:

    Views: 6331

    Rating: 4 / 5 (41 voted)

    Reviews: 88% of readers found this page helpful

    Author information

    Name: Kimberely Baumbach CPA

    Birthday: 1996-01-14

    Address: 8381 Boyce Course, Imeldachester, ND 74681

    Phone: +3571286597580

    Job: Product Banking Analyst

    Hobby: Cosplaying, Inline skating, Amateur radio, Baton twirling, Mountaineering, Flying, Archery

    Introduction: My name is Kimberely Baumbach CPA, I am a gorgeous, bright, charming, encouraging, zealous, lively, good person who loves writing and wants to share my knowledge and understanding with you.