šŸ†2025 Christmas Hot Sale⚔Foldable Honeycomb Paper Christmas Trees – Table Décor

$4.99
Color:  Red
Size:  10CM
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Quantity

Description

😊 If you are not satisfied with the goods received, please contact us within 15 days after receipt, and we will give you the best help! Please don't worry!
šŸ­ Fast refund Guarantee>> Partial or full refund depending on the situation.
🚢 Shipping>>Worldwide Express Shipping Available.
ā° Handling time>> Ship fastest after payment.

⚔⚔Flash Sale Ending Soon!!! Prices return to normal soon. Act fast before sale ends.

šŸŽšŸ’Don't forget to get some for your family and friends as it's a unique gift idea.


šŸŽ…Materials, Green Living:Using Paper, It Is Not But Also Contributes To , Starting Green Living From The Little Things.

šŸŽ…Delicate Decorations, Adding Festival Atmosphere:Personalize With Various Decorations Such As Lights And To A Festive To Your Home.

šŸŽ…Parent-Child Interaction, Strengthening Bonds:Making It With Family Not Enhances Parent-child Relationships But Also Cultivates Children's Hands-on Skills And Creativity.

šŸŽ…Easy Folding, Fun:Create A Unique Paper Christmas Tree With Simple Folding Steps And Enjoy The Fun Of DIY.

šŸŽ…Unlimited Creativity, Customized Design: And Design The Paper Christmas Tree To Your Liking, Whether Vintage Or Modern , It Can Be Easily Achieved.


ā¤ļøThank you very much for visiting our store. Have a nice shopping dayā¤ļø

Click OnĀ "ADD TO CART"Ā To Get Yours Now!

šŸŽšŸ’TIPS:All goods are authentic,with genuine patents,counterfeit must beinvesigated!Customers,please identify our products!
āœ…Guaranteed! GoogleTrusted Store!
āœ…Paypal and Credit Card secure payment.šŸŖPalPay certified reputable merchant.šŸ’µHas paid 100k USD in PayPal as store guarantee

NOTE:

Our Facebook Official Customer Feedback Score Has Reached 4.9 out of 5. The score is better than 98% of other Ecommerce businesses who sell products through Facebook ads

Quality Standards and Certifications:
Our products have been rigorously quality tested and have received industry certifications to ensure that each product meets the highest standards. We are committed to providing you with products you can trust.

Unique Selling Points:
Unlike ordinary products on the market, our products are carefully crafted using advanced technology and unique craftsmanship, and every detail is carefully polished to ensure excellent performance and durability.

Satisfaction Guarantee:
We guarantee the quality of our products. If you are not completely satisfied, we provide a hassle-free return service. Our goal is to ensure that every customer returns with satisfaction.

😊WHY THE USā“

We work directly with manufacturers all over the world to ensure the best quality of our products. We have Quality Control department which helps us to keep our promise!
  • 😊PriceĀ is alwaysĀ competitive.
  • 🚢AwesomeĀ Customer Service.
  • šŸ†Amazing products along withĀ High Quality.
  • šŸ¬Read reviews from our lovely customers.

Ā 

Ā 

const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '8b4cdde0-d0cc-49dc-9cdc-03c1d9efa7c9'; this.isRTL = SPZ.win.document.dir === 'rtl'; } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = 'dc87c6e6-4ace-4a74-b4c7-38ea862b5088'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // é‡ę–°ęø²ęŸ“ ęŠ–åŠØé—®é¢˜å¤„ē† this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // ē»‘å®šäŗ‹ä»¶ bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popoveré¢ęæē‚¹å‡»čŒƒå›“ if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // å…¼å®¹äø»é¢˜ this.toggleProductSticky(true); }) // ē›‘å¬å˜ä½“å˜åŒ– document.addEventListener('dj.variantChange', async(event) => { // é‡ę–°ęø²ęŸ“ const variant = event.detail.selected; if (variant.product_id == 'dc87c6e6-4ace-4a74-b4c7-38ea862b5088' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // å…¼å®¹äø»é¢˜ handleFitTheme() { // top å±žę€§å½±å“ęŠ–åŠØ let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (stickyå±žę€§å½±å“ popover 层级展示, ä¼šč¢«å…¶ä»–å…ƒē“ č¦†ē›–) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // čæ˜åŽŸčÆ„äø»é¢˜åŽŸęœ‰ēš„stickyå±žę€§å€¼ productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // å…¼å®¹äø»é¢˜ this.toggleProductSticky(); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);