Solar Christmas Lights – 2 Pack, 240 LED 80Ft Colorful Outdoor String Lights, Waterproof & 8 Modes

Color- Warm White
$28.99
The current produc does not participate any Rebate. Switch the participating product to check the design.
(This prompt will not be displayed on the client-side.)
if(window.self === window.top) { (window.disabled_exts ||=[]).push('product_detail_rebate'); } class SpzRebateComponent extends SPZ.BaseElement { constructor(element) { super(element); } xhr_ = SPZServices.xhrFor(this.win); viewport_ = this.getViewport(); action_ = null; lang = document.documentElement.lang || 'en-US'; landPage = "\/promotions\/rebate\/"; pageType = 1; cart = []; initData = null; rebateInfo = null; renderData = null; footerImage = `${this.win.SHOPLAZZA["image_domain"]}oss/operation/e8ebb03dbb710457ca3b4b6a70898ab2.svg`; isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.initData = this.getProduct(); this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction("triggerGetRenderData", () => { const event = SPZUtils.Event.create(this.win, "triggerGetRenderData", this.renderData); this.action_.trigger(this.element, "getRenderData", event); }); this.registerAction("bindPropagation", () => { document.querySelector(".product_detail_rebate_list").addEventListener("click", e => { e.stopPropagation(); this.win.sa && this.win.sa.track("plugin_rebate_promotion_click", { plugin_timestamp: Date.now(), plugin_location: "info", product_id: this.initData.product.id, discount_id: this.rebateInfo.discount_list.map((item) => item.discount_id)[0], }); }); }); } async mountCallback() { document.addEventListener("dj.variantChange", e => { const data = e.detail; if (document.querySelector("#product-select-modal.show")) return; if (this.initData && this.initData.product && data.product && this.initData.product.id === data.product.id) { this.initData = data; this.initRebate(this.initData, true); } else { this.initData = data; this.getRebateInfo(); } }); document.addEventListener("dj.addToCart", e => { const v = e.detail; this.rebateInfo && this.win.sa && this.win.sa.track("plugin_rebate_atc", { variant_discount_id: this.getVariantDiscountId(v.variant_id).map(item => item.discount_id), discount_ids: this.rebateInfo.discount_list.map(item => item.discount_id), variant_id: v.variant_id, product_id: v.product_id, price: v.item_price, number: v.number, }); }); await this.getRebateInfo(); if (document.querySelector(".plugin-container__bottom-fixed")) { this.showDiscountPopupsInfoBar(); } else { this.win.addEventListener("extloaded", () => { this.showDiscountPopupsInfoBar(); }); } } getProduct = (() => { document.addEventListener("dj.variantChange", e => { if (!e.detail || !e.detail.product) return; const productJson = document.querySelector("#product-json"); if (productJson && productJson.textContent && JSON.parse(productJson.textContent)) { productJson.textContent = JSON.stringify(e.detail); } if (this.win.jQuery && this.win.jQuery.fn && this.win.jQuery(document).data("djproduct")) { this.win.jQuery(document).data("djproduct", e.detail); } }); return () => { let productData = null; if (this.win.jQuery && this.win.jQuery.fn) { try { let product = this.win.jQuery(document).data("djproduct"); if (product) { productData = JSON.parse(JSON.stringify(product)); } else { productData = null; } } catch (error) { productData = null; } } if (!productData) { const productJson = document.querySelector("#product-json"); productData = (productJson && productJson.textContent && JSON.parse(productJson.textContent)) || null; } return productData; }; })(); initRebate = this.win.SPZCore.Types.debounce( this.win, (async (data, variantChange) => { let discount_list = Object.assign([], this.rebateInfo.discount_list); /* 按子商品的多少对优惠信息进行排序 */ discount_list && discount_list.sort((a, b) => { return b.variant_ids.length - a.variant_ids.length; }); /* 选中子商品时 筛选子商品的优惠信息 */ if (data.selected && data.selected.id) { discount_list = this.getVariantDiscountId(data.selected.id); } /* 无满减信息 */ if (!(discount_list && discount_list.length)) { return; } const isSection = !!document.querySelector( `div[data-section-type^="shoplazza://apps/publicapp/blocks/rebate"] #rebate_custom_component` ); if ( (this.rebateInfo.rebate_type == "sku" && data && data.selected && data.selected.id) || this.rebateInfo.rebate_type == "spu" ) { let nowLandpage = this.landPage; if (discount_list[0]) { nowLandpage = this.landPage + discount_list[0].discount_id || ""; } const info = { rebate: discount_list[0], maxShowCount: this.win.innerWidth > 768 ? 3 : 1, landPage: nowLandpage, modalFooterImg: `url(${`${this.win.SHOPLAZZA["image_domain"]}oss/operation/e8ebb03dbb710457ca3b4b6a70898ab2.svg`})`, }; this.renderData = info; if(isSection) { SPZ.whenApiDefined( document.getElementById("app_rebate_section") ).then(apis => { apis.render(info, true); }); } else { // 重新渲染 抖动问题处理 this.templates_ = SPZServices.templatesForDoc(); const newTplDom = await this.templates_.renderTemplate(document.querySelector('#appRebateBlockTpl'), info) const parentDiv = document.querySelector('#app_rebate_block'); const oldDom = parentDiv.querySelector('.app_rebate_list'); if(oldDom){ parentDiv.replaceChild(newTplDom, oldDom); } else { parentDiv.appendChild(newTplDom); } } } this.insertSlideTag(this.rebateInfo.tag, variantChange); var pluginCurrencyEvent = new CustomEvent("plugin_currency_update"); document.dispatchEvent(pluginCurrencyEvent); }).bind(this), 10 ); getRebateInfo = async () => { if (this.initData && this.initData.product && this.initData.product.id) { var variant_ids = this.initData.product.variants.map(variant => variant.id); const res = await this.xhr_.fetchJson( "\/api\/discount-rebate\/product-discount", { method: "POST", body: { product_id: this.initData.product.id, product_type: this.initData.product.product_type, variant_ids: variant_ids, }, } ); if (!SPZCore.Types.isEmptyObject(res.rebate_info)) { res.rebate_info.tag = res.tag; res.rebate_info.rebate_type = res.rebate_type; this.rebateInfo = res.rebate_info; this.initRebate(this.initData); } else { if (this.win.top !== this.win.self) { const noActivity = document.getElementById("no-rebate-activity"); noActivity && (noActivity["style"].display = "block"); } } } }; getVariantDiscountId = (variant_id) => { if (!variant_id || !this.rebateInfo) return []; var rebateId = this.rebateInfo.variant_discount_map[variant_id]; return this.rebateInfo.discount_list.filter(item => item.discount_id == rebateId) || []; }; insertSlideTag = (tag, variantChange) => { setTimeout(() => { if (tag) { var tag_container; var modal = document.getElementById("product-select-modal"); if (modal && modal.classList.contains("show")) { if (!variantChange && modal.querySelector(".slider-discount-tag")) return; if ( variantChange && modal.querySelector(".slider-discount-tag:not(.rebate-tag)") ) return; tag_container = modal; } else { var product_detail_card = document.querySelector( '.page_container > [data-section-type="product_detail"], .page_container > [data-section-type="product-template"]' ); if(!product_detail_card) return; if (!variantChange && product_detail_card.querySelector(".slider-discount-tag")) return; if (variantChange && product_detail_card.querySelector(".slider-discount-tag:not(.rebate-tag)")) return; tag_container = product_detail_card; } if (tag_container.matches("#product-select-modal") && this.pageType === 13 && document.documentElement.clientWidth < 768) return; const tagDom = `<div class="slider-discount-tag dj_skin_product_title rebate-tag">${tag}</div>` if (document.querySelector(".sep-loaded-slider")) { var loadedSlider = tag_container.querySelector(".sep-loaded-slider"); loadedSlider.querySelectorAll(".slider-discount-tag").forEach(function(element) { element.remove(); }); loadedSlider.insertAdjacentHTML("beforeend", tagDom); } else { if (tag_container.querySelector(".support-slick")) { var supportSlick = tag_container.querySelectorAll(".support-slick, .sep-slider"); supportSlick.forEach((element) => { element.querySelectorAll(".slider-discount-tag").forEach((element) => { element.remove(); }); element.insertAdjacentHTML("beforeend",tagDom); }); } else { var sepSlider = tag_container.querySelector(".sep-slider"); sepSlider.querySelectorAll(".slider-discount-tag").forEach(function(element) { element.remove(); }); sepSlider.insertAdjacentHTML("beforeend",tagDom); } } if (document.documentElement.clientWidth < 768) { const sliderDiscountTagHeight = tag_container.querySelector(".slider-discount-tag").offsetHeight || 0; document.querySelector(".product-image__swiper_bullets").style.bottom = `${sliderDiscountTagHeight + 15}px`; } } }, 1000); }; fetchInfoBar = () => { let discount_ids = []; if (this.pageType === 1) { discount_ids = this.rebateInfo && this.rebateInfo.discount_list.map(item => item.discount_id); } else if (this.pageType === 38) { discount_ids = [this.win.rebateObj.rebateCollection_id] || []; } const productObj = this.getProduct(); return this.xhr_.fetchJson("\/api\/discount-rebate\/global-text", { method: "POST", body: { product_type: productObj && productObj.product && productObj.product.product_type, line_items: (this.cart.line_items || []).map(item => ({ variant_id: item.variant_id, product_id: item.product_id, quantity: item.quantity, price: item.price, selected: !item.unchecked, })), discount_ids: discount_ids, }, }); }; renderBottomBanner = res => { if (!res.tips) return; if (document.querySelector(".discount__info-bar")) return; var bar_style = `background:linear-gradient(90deg,${res.config.background_color_start},${res.config.background_color_end}); color:${res.config.color};`; let data = { tips: res.tips, landPage: this.landPage + res.id, bar_style }; const html = SPZCore.Dom.htmlFor(this.element); const banner = html([ `<a impr="1" imprevt="1" id="rebate_bottom_bar" href=${data.landPage} class="discount__info-bar text-truncate" data-activity-type="rebate" style="${data.bar_style}">${data.tips}</a>`, ]); document.querySelector(".plugin-container__bottom-fixed").appendChild(banner); const pluginCurrencyEvent = new CustomEvent("plugin_currency_update"); document.dispatchEvent(pluginCurrencyEvent); if (res.id) { var trackParams = { page: this.pageType, discount_id: res.id, product_id: this.getProduct()?.product.id, }; banner.addEventListener("click", () => { this.win.sa && this.win.sa.track("plugin_rebate_promotion_click", { plugin_timestamp: Date.now(), plugin_location: "bottom_bar", product_id: trackParams.product_id, discount_id: trackParams.discount_id, }); }); this.win.sa && this.win.sa.track("plugin_rebate_banner_pv", trackParams); } }; showDiscountPopupsInfoBar = () => { if ([13, 14, 19, 30, 31].includes(this.pageType)) return; if (document.querySelector(".plugin-container__bottom-fixed .discount__info-bar")) return; this.fetchInfoBar().then(this.renderBottomBanner); document.addEventListener("dj.cartChange", () => { this.fetchInfoBar().then(this.renderBottomBanner); }); }; } SPZ.defineElement("spz-custom-rebate", SpzRebateComponent);
Quantity
Worldwide shipping
30-day Return Policy
Delivered within 6 to 15 business days
Safe payment without risk
people are currently viewing
Shipping
Estimated Delivery:Jul-26 - Aug-04
Description

✨ 240 Bright LEDs for Colorful Glow​
Transform your garden, porch, patio, or party with our ​2-pack solar Christmas lights. Each set includes ​120 LEDs​ and a ​40-foot (12-meter) light string​ with a ​6-foot (1.8-meter) lead cable, totaling ​**80 feet (24 meters)**​ of colorful illumination.

🌞 Upgraded Solar Panel & Battery​
With an ​800mAh high-capacity battery​ and ​efficient solar panels, these lights charge in ​6-8 hours​ of sunlight and last for ​8-14 hours​ at night. Enjoy eco-friendly, hassle-free lighting that’s both energy-efficient and cost-effective.

💧 IP65 Waterproof​
Designed to withstand rain, wind, and snow, these solar string lights are ​IP65 waterproof, making them suitable for both ​indoor and outdoor use.

📏 Product Dimensions​
‎80 Feet / 24 Meters

📦 Package Dimensions​
‎9.06 x 6.77 x 1.38 inches / 23 cm x 17 cm x 3.5 cm

⚖️ Item Weight​
‎9.6 Ounces / 272 Grams

💡 Light Color​
‎Colorful

🔋 Power Source​
‎Solar Powered

🌟 Included Components​
‎2x 120 LED Solar String Lights, 2x Solar Panels, 2x Ground Stakes, 1x User Manual

Length: 2 Pack solar powered string lights with 40ft length of light add 6ft lead cable, 46ft together, and 120 super bright LED.

Waterproof:Both the string lights and the solar panel are IP65 Waterproof, make it suitable for both indoor and outdoor use, not worry about short circuit or weather damage.

Convenient:The string lights is automatically turned on/off, convenient to use.

Comfortable and soft:When the string lights are turn on, the light is soft and not dazzling.

Solar String Lights For Gazebo&Garden

Press ON/OFF switch, it will flash from Mode 1 to Mode 8 at random.

Press "Mode" switch to to choose the mode you want:combination,waves,sequential,gradual,chasing/flash,slow fade,twinkle/flash,steady on .

1. Ensure the solar panel is NOT sheltered , because it needs to absorb enough energy from the sun .

2. NOT immerse it in the water. They are ONLY designed to be protected from the rain.

Specification:

  • -Length:2×39ft/12m
  • -Number of lights: 2×120 LED
  • -Length between Two Lights: 0.1m/0.33ft
  • -Color: Multicolored
  • -Charging Time: 6-8 hours
  • -Solar Panel: 1.2V 200mA (8CM×8CM)
  • -Rechargeable Ni-MH battery: Class A++800mAh

8 Different Modes

Total 8 Different working modes - Combination, In Waves, Sequential, Slo-Glo, Chasing/Flash, Slow Fade, Twinkle/Flash, Steady on, which Can create romantic, soft, sweet atmosphere in all occassions, especially in Festivsal.

On different occasions, choose different modes according to your own preferences, which makes you feel relaxed and happy.

For Home & Garden Decoration

Flexible Copper Wire let your imagination and creativity run wild. You can release your imagination to create any shape you like, ideal for holiday decoration, bedroom, patio, deck, front porch, flower fence, wedding, etc.

DIY Shape

Build into the shapes you want; simply wrap around tree trunks or gazebos , patio, furniture; when darkness, the wire fades to invisible, leaving only the bright lights.

Solar Powered and Waterprof

Choosing solar lights can be energy-saving. About 8 hours under sunshine brings to 100% charge can keeps more than 8 hours working.

For Commercial & Outdoor Decoration

Convenient to decorate your indoor and outdoor space with this string lights, without any other electric wire needed. Perfect string lighting decoration for wedding, party, celebration, holiday etc.

FAQs

All toys (excluding dolls) we sell cannot be resold or returned once unpacked. Please think carefully before purchasing.
Not all toy advent calendars are the same as those shown in the video. Due to the large variety of toys, each advent calendar contains randomly selected items.

Payment Methods

You can place an order on our website and pay using a major credit card, debit card, or PayPal. We do not currently accept checks or money orders.

International Orders

Yes, we ship internationally! For shipping options and rates, simply add an item to your cart and enter your country and postal code. Please note that PlaySeasons.com is NOT responsible for any taxes, duties, or fees imposed by your country. These fees are NOT included in the shipping and handling fees charged by PlaySeasons.com. Countries like the United Kingdom, Australia, Brazil, and Canada may impose additional fees, and buyers from other countries should be aware of their country's import rules and fees.

Once your order is shipped, we will send you tracking information via email.

When will my order arrive?

We start creating your reborn doll after you place your order to ensure every detail is perfect.

  • Painting time: 10-15 days
  • Delivery time: Approximately 15 days after shipping

You will receive an email with tracking information after shipping. Delivery companies typically include FedEx, Yun Express, or DHL. Tracking numbers will be available once your reborn doll has arrived in your country.

Christmas season: Due to high demand, please expect shipping to take up to 30 days after your order during the Christmas period. We apologize for any inconvenience and will notify you as soon as there are updates.

Why didn’t I receive a confirmation email?

In some cases, customers may not receive confirmation emails due to unknown issues or email settings. Please check your spam folder, and if you still cannot find the email, contact us with the name or email address used when placing your order. We will assist you as soon as possible.

30-Day Return Policy

At PlaySeasons.com, we guarantee 100% satisfaction with your purchase. If for any reason you are not satisfied, we accept returns within 30 days for a full refund of the purchase price. Our goal is to help you build a lasting doll collection of high quality at an affordable price. Order with confidence, knowing that you will receive a beautifully crafted doll that meets your standards.

Types of Dolls and Pricing

The dolls on our website fall into two main categories: vinyl dolls and silicone dolls. Some vinyl dolls have cloth bodies, but most of their parts are made of vinyl. Prices vary due to differences in material and size.

  • Cloth body dolls/Vinyl dolls:

    • 12 inches (30 cm) dolls start at $39.9
    • 17, 20, 22 inches (43-55 cm) dolls start at $69.9
    • Larger, heavier dolls, resembling real newborns, are priced higher.
  • Silicone dolls:

    • 6 inches (15 cm) start at $50-$60
    • 12 inches (31 cm) range from $110-$180
    • 18 inches (45 cm) priced at $380

Payment and Account Options

Currently, we only support PayPal, credit card, and local bank payments. We do not accept payments by check or offer payment plans.

Magnetic Parts

Reborn dolls come with magnetic accessories (e.g., pacifiers), and we do not offer full shear options.

Email Delivery Issues

If you do not receive emails after placing an order, it might be due to your email settings. Check your junk folder or your email blacklist, and ensure our messages are not being blocked.

Is My Online Order Secure?

Absolutely! We use industry-standard SSL encryption to ensure all transactions are secure, so you can shop confidently.

Why Doesn’t My Doll Look Exactly Like the Pictures?

The photos on our website show the artist's original sculptures. Some minor changes may occur during production. However, we strive to maintain the highest standards for each doll. If you are dissatisfied for any reason, please contact us at service@PlaySeasons.com.

Why is My Doll Turning Black/Blue?

The vinyl material used for the doll is luxurious but can absorb color from dark fabrics. To avoid this, please ensure all garments not supplied with the doll are pre-washed. For dolls with lighter skin tones, avoid dark clothing to prevent dye transfer.

Can I Order a Reborn Doll Based on a Photo?

Yes, we can create a custom reborn doll based on a photo you provide. However, this service starts at $2000. Please email us if you are interested.

Does the Reborn Doll Have Movable Parts?

Yes, the arms and legs of our reborn dolls can be moved up and down.

Can the Reborn Doll Take a Bath?

Only dolls with a full silicone body can be safely immersed in water. Cloth body dolls cannot be submerged.

Why Does the Doll Have a Smell?

The scent comes from the non-toxic, eco-friendly vinyl material. The smell is harmless and will fade over time.

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

FAQs

How much does shipping cost?

How long will it take for me to receive my product?

Shipping typically takes 6 to 15 business days.

Shipping Costs:

For Slovakia, Croatia, Czech Republic, and other European countries (51 countries/regions total):

$7.99 for orders $0 - $59.99

$11.99 for orders $59.99 - $109

Free shipping for orders over $109.01

For Australia:

$8.99 for orders $0 - $59.99

$13 for orders $59.99 - $109

Free shipping for orders over $109.01

For Canada and the UAE:

$9.99 for orders $0 - $59.99

$14.99 for orders $59.99 - $109

Free shipping for orders over $109.01

For the USA:

$11 for orders $0 - $59.99

$16 for orders $59.99 - $109

Free shipping for orders over $109.01

For Saudi Arabia, Bahrain, Belgium, Ireland, the Netherlands, Norway, Sweden, Mexico, South Korea, and other higher-cost regions:

$9.99 for orders $0 - $59.99

$13 for orders $59.99 - $109

Free shipping for orders over $109.01

For New Zealand:

Standard Shipping: $11.99 for orders $0.00 - $59.99

Free shipping: Free for orders over $109.01

Standard shipping: $17.00 for orders $59.99 - $109.00

What is your return policy?

Our return policy allows returns within 30 days of delivery. Return shipping costs are the customer's responsibility. Items must be unopened, undamaged, and in their original packaging. To initiate a return, please contact us at Service@PlaySeasons.com. Refunds are processed within 7 days of receiving the returned items.

Do you support purchases on accounts or payments by check?

No, we currently support only 10 payment methods: PayPal, Visa, MasterCard, American Express, Discover, CB Bank, Softpay, Giropay, Klarna, and JCB, etc.

Why do some customers not receive emails after placing an order?

It may be because your email settings are automatically rejecting our emails or adding them to the blacklist. Please check your email junk folder carefully.It may be because your email settings are automatically rejecting our emails or adding them to the blacklist. Please check your email junk folder carefully.

Latest posts