Lumi Plug-In Night Light (2024)

The Compact and Automatic Night Light

  • Ideal Lighting
  • Automatic Illumination
  • Energy Efficient

1. How do I use the discount code?

Copy the discount code from the product page, and then apply the discount code at check out.

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 eufy's official website

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

"); } function showDiscountBox(sku) { if (couponsData[sku] && couponsData[sku][0] && couponsData[sku][0].available) { let currentData = couponsData[sku][0]; ShowCode(currentData); } else { $('.prodCouponWrapper.couponWrapper').hide(); $('.prodCouponWrapper.DiscountMark').hide(); } } function showHideCode() { const isTarget = $('#purchase').data('cookies-discount') const discount = Cookies.get('discount_code') || Shopify.theme.getURLParams('discount') if (discount) { copyCodeTxt = discount } if (isTarget && discount) { $('.prodCouponWrapper .DiscountTxt').text(``) $('.prodCouponWrapper .couponCode').text(discount); $('.prodCouponWrapper .timeOutTxt').html(``) $('.prodCouponWrapper.couponWrapper').show() } } function ShowCustomCode() { let title = ""; if (title) { copyCodeTxt = title; $('.prodCouponWrapper .couponCode').text(title); } if ("") { let DiscountTxt = ""; $('.prodCouponWrapper .DiscountTxt').text(DiscountTxt); $('.product_purchase_details .price_discount').html(`Save ${DiscountTxt} `); $('.prodCouponWrapper .DiscountMarkTxt').text(DiscountTxt); $(".prodCouponWrapper").show(); $(".couponWrapper").show(); } } function getItemWithExpiry(key) { const itemString = localStorage.getItem(key); if (!itemString) { return null; } const item = JSON.parse(itemString); const now = new Date(); // 检查是否过期 if (now.getTime() > item.expiry) { localStorage.removeItem(key, { domain: shopifyDomain, expires: 30, }); return null; } return item; } function getReferralExclusiveCode() { let queryParams = {}; if (location.search.length) { let params = location.search.substr(1).split('&'); for (let i = 0; i

${DiscountTxt} `); $('.prodCouponWrapper .DiscountMarkTxt').text(DiscountTxt); $(".prodCouponWrapper").show(); $(".couponWrapper").show(); $('.prodCouponWrapper .timeOutTxt').css('display', 'none'); $('.prodCouponWrapper .timeTxt').css('display', 'inline-block'); $('.prodCouponWrapper .timeTxt').html(`Hurry! Offer Ends Soon!`); } } function ShowCode(data) { let endsTime = data.ends_at ? new Date(data.ends_at).valueOf() : null; const referralExclusiveCode = getReferralExclusiveCode() let title = "" || data.title if (isSetReferralCode(referralExclusiveCode)) { title = referralExclusiveCode?.code } $('.prodCouponWrapper .couponCode').text(title); copyCodeTxt = title; let DiscountTxt; let DiscountedPrice; let price = jsVariant.price / 100; if (data.value_type === "fixed_amount") { DiscountTxt = data.value_style; DiscountedPrice = new Intl.NumberFormat('en-us', { style: 'currency', currency: 'USD' }).format((price + Number(data.value)).toFixed(2)); } else if (data.value_type === "percentage") { DiscountTxt = Math.abs(parseInt(data.value)) + "%"; DiscountedPrice = new Intl.NumberFormat('en-us', { style: 'currency', currency: 'USD' }).format((price - price * Math.abs(Number(data.value)) / 100).toFixed(2)); }; if ("") { DiscountTxt = ""; } // start_ai_generated if (isSetReferralCode(referralExclusiveCode)) { DiscountTxt = referralExclusiveCode.discountValue } // end_ai_generated $('.prodCouponWrapper .DiscountTxt').text(DiscountTxt); if (!window.productBagdeValue) { $('.product_discount_badge .discount_value').text(DiscountTxt); } $('.product_purchase_details .price_discount').html(`Save ${DiscountTxt} `); $('.prodCouponWrapper .DiscountMarkTxt').text(DiscountTxt); if (title.includes('WS24BF') || title.endsWith('BF')) { $('.prodCouponWrapper').addClass('couponWrapper-black_friday'); } if (endsTime && !referralExclusiveCode) { timeLine = setInterval(function() { nowTime = new Date().getTime(); let distance = endsTime - nowTime; if (distance <0) { clearInterval(timeLine); $('.couponWrapper').hide(); $('.prodCouponWrapper.DiscountMark').hide(); $('.prodCouponWrapper .product__information .modal_price .salePrice').remove(); $('.prodCouponWrapper .product__information .current_price').removeClass("UnderscorePrice"); } else { $('.couponWrapper').show(); $('.prodCouponWrapper.DiscountMark').show(); const {days, hours, minutes, seconds} = getFormatTimes(distance) if (days >= 7) { $('.prodCouponWrapper .timeOutTxt').css('display', 'none'); $('.prodCouponWrapper .timeTxt').css('display', 'inline-block'); $('.prodCouponWrapper .timeTxt').html(`Hurry! Offer Ends Soon!`); } else if (days === 1) { $('.prodCouponWrapper .timeOutTxt').css('display', 'inline-block'); $('.prodCouponWrapper .timeTxt').css('display', 'none'); $('.prodCouponWrapper .newDtes').html(`${days} Day ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('.prodCouponWrapper .timeOutTxt').css('display', 'inline-block'); $('.prodCouponWrapper .timeTxt').css('display', 'none'); $('.prodCouponWrapper .newDtes').html(`Today ${hours}:${minutes}:${seconds}`); } else { $('.prodCouponWrapper .timeOutTxt').css('display', 'inline-block'); $('.prodCouponWrapper .timeTxt').css('display', 'none'); $('.prodCouponWrapper .newDtes').html(`${days} Days ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { $('.prodCouponWrapper.couponWrapper').show(); $('.prodCouponWrapper.DiscountMark').show(); $('.prodCouponWrapper .timeOutTxt').css('display', 'none'); $('.prodCouponWrapper .timeTxt').css('display', 'inline-block'); $('.prodCouponWrapper .timeTxt').html(`Hurry! Offer Ends Soon!`); } } function copyCouponCode() { execCoy(copyCodeTxt); $('.prodCouponWrapper .copyTextReplace').show(); $('.prodCouponWrapper .copyText').hide(); setInterval(function() { $('.prodCouponWrapper .copyTextReplace').hide(); $('.prodCouponWrapper .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; } function formatNum(n) { return n <10 ? '0' + n : n } function getFormatTimes(time) { const days = Math.floor(time / (1000 * 60 * 60 * 24)); const hours = formatNum(Math.floor((time % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60))); const minutes = formatNum(Math.floor((time % (1000 * 60 * 60)) / (1000 * 60))); const seconds = formatNum(Math.floor((time % (1000 * 60)) / 1000)); return {days, hours, minutes, seconds} } function getUrlParams(name, url){ if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, " ")); };

$17.99

Email me when available

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

Lumi Plug-In Night Light

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

  • Ideal Lighting
  • Automatic Illumination
  • Energy Efficient

See More

Lumi Plug-In Night Light

Lumi Plug-In Night Light (2024)

References

Top Articles
Latest Posts
Article information

Author: Saturnina Altenwerth DVM

Last Updated:

Views: 5927

Rating: 4.3 / 5 (64 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Saturnina Altenwerth DVM

Birthday: 1992-08-21

Address: Apt. 237 662 Haag Mills, East Verenaport, MO 57071-5493

Phone: +331850833384

Job: District Real-Estate Architect

Hobby: Skateboarding, Taxidermy, Air sports, Painting, Knife making, Letterboxing, Inline skating

Introduction: My name is Saturnina Altenwerth DVM, I am a witty, perfect, combative, beautiful, determined, fancy, determined person who loves writing and wants to share my knowledge and understanding with you.