soundcore P40i Ear Tips Kit - White (2024)

0 / 0

• Authentic parts manufactured by soundcore

• Compatible with soundcore P40i - White

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! Christmas 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! Christmas 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; }})

Sold Out

soundcore P40i Ear Tips Kit - 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 P40i Ear Tips Kit - White (3) soundcore P40i Ear Tips Kit - 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, 'A3955Z21-94', custom_variants_prescription) } } })

    Email me when available

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

    soundcore P40i Ear Tips Kit - White

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

    • Authentic parts manufactured by soundcore

    • Compatible with soundcore P40i - White

    See More

    soundcore P40i Ear Tips Kit - White

    soundcore P40i Ear Tips Kit - White (2024)

    FAQs

    How should Soundcore earbuds fit? ›

    The ear tips of the buds should be snugly fitted inside the ear canals. You can tell if it's properly worn when the earbuds don't move around as you move from place to place as well. To secure the earbuds in place, pull the upper part of your ears upwards and place the earbuds inside.

    How do you pair Soundcore p40i? ›

    Access the Bluetooth settings on one device and disconnect the earbuds from the list of available devices. Then, you can press and hold both the left and right earbuds simultaneously for 5 seconds. This action will put the earbuds into the pairing state.

    How do you know if your eartips fit? ›

    Method 2: You can try gently putting your fingers in your ears starting with your smallest finger. Move to the next finger on each hand until you get a good seal and outside noise sounds muffled. Then try to match the size of that finger to one of the provided ear tip sizes.

    Why don't my earbuds stay in my ears? ›

    It's common for earbuds to fall out, especially if they're not fitted securely. Factors like sweat can cause them to slip, and accumulated earwax can affect the grip. Cleaning your ears and earbuds regularly can help improve your fit. Also, look into earbuds with features like ear fins, hooks, or latching mechanisms.

    How should earbud tips fit? ›

    Your ear tips should make a good seal with your ear canal. When the fit is right, you experience better noise cancellation, and music has a rich bass sound.

    How do you put in earbud tips? ›

    Easiest Way to Install Earbud Tips

    Pinch the earbud tip with your index finger and thumb, then gently pull it off. Push the new earbud tip over the connector until it clicks.

    Why do my silicone tips keep falling off? ›

    A common cause of this is the build up of sweat between the earbud body and the silicone sleeve. The earbud body and silicone sleeve are tacky when clean and dry but a small build up of sweat will cause all this friction to be lost and ultimately for the sleeve to fall off the earbud too easily.

    How do I get both Soundcore earbuds to work? ›

    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.

    Why is Soundcore not pairing? ›

    If you fail to connect the speaker to your device, you can try the following steps: - Confirm the speaker is fully charged and it's not paired with other devices. - Forget all Bluetooth pairing records on your device. - Reboot your speaker and your device.

    Why is my Soundcore earbuds not connecting? ›

    Turn on the Bluetooth device (such as a phone, computer, etc.), forget all the pairing records on your device, and turn off Bluetooth. - Take the earbuds out of the charging case, and wear the earbuds, while long pressing the left and right earbuds 10S, hear a beep, indicating a successful reset.

    How do you tell if earbuds are too big or too small? ›

    An earbud that's too big will put pressure on the walls of your inner ear. That doesn't make for a comfortable wearing experience. On the other hand, an earbud that's too small might go deeper into your ear than intended.

    Should earbuds be tight or loose? ›

    Seat the ear tip firmly

    For optimum sound, seal your ear canal with the ear tip. Note that merely inserting an ear tip into your ear isn't always enough to form a perfect seal.

    Do Anker earbuds fall out? ›

    I like the case and how the earbuds look, however they are uncomfortable and can easily slip out of the ears which is frustrating.

    References

    Top Articles
    Latest Posts
    Article information

    Author: Chrissy Homenick

    Last Updated:

    Views: 5452

    Rating: 4.3 / 5 (74 voted)

    Reviews: 89% of readers found this page helpful

    Author information

    Name: Chrissy Homenick

    Birthday: 2001-10-22

    Address: 611 Kuhn Oval, Feltonbury, NY 02783-3818

    Phone: +96619177651654

    Job: Mining Representative

    Hobby: amateur radio, Sculling, Knife making, Gardening, Watching movies, Gunsmithing, Video gaming

    Introduction: My name is Chrissy Homenick, I am a tender, funny, determined, tender, glorious, fancy, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.