🌾All-Season Ornamental Fringe Tree Seeds for Pots

people are viewing this right now
$29.99
$54.99
-$25.00
COLOR- Mixed Color
QUANTITY- 200 Seeds
Quantity
Clinically Proven & Certified: TGA-Approved, GMP-Certified.
Local Delivery In 7-10 Days.
Free Shipping On All Orders Over $59.97
100% No Questions Asked 180-Day Money-Back Guarnetee.
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'a91ab56a-5f36-438b-9d3b-c80f899c44d8'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // ćŠ èŽ­äž­çŠ¶æ€ } 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 = 'f5140ed1-abd8-4be7-9df5-32b3df54df07'; 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 == 'f5140ed1-abd8-4be7-9df5-32b3df54df07' && 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(); }); // ćŠ èŽ­äș‹ä»¶ this.registerAction('handleAddToCart', (invocation) => { // é˜»æ­ąäș‹ä»¶ć†’æłĄ const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // ćŠ‚æžœæ­ŁćœšćŠ èŽ­äž­ïŒŒç›ŽæŽ„èż”ć›ž if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // ćŠ èŽ­æ–čæł• async addToCart(quantity) { // èźŸçœźćŠ èŽ­äž­çŠ¶æ€ this.isAddingToCart_ = true; const productId = 'f5140ed1-abd8-4be7-9df5-32b3df54df07'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // è§Šć‘ćŠ èŽ­æˆćŠŸæç€ș this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无èźșæˆćŠŸć€±èŽ„ïŒŒéƒœé‡çœźćŠ èŽ­çŠ¶æ€ this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // è§Šć‘ćŠ èŽ­æˆćŠŸæç€ș triggerAddToCartToast_() { // ćŠ‚æžœäž»éą˜æœ‰è‡Șć·±çš„ćŠ èŽ­æç€șïŒŒćˆ™äžæ˜Ÿç€ș const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 星ç€șćș”ç”šçš„ćŠ èŽ­æˆćŠŸæç€ș this.showToast_("Added successfully"); } 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);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() { // ćŒäž€éĄ”ćŻèƒœæœ‰ć€šäžȘ block 搄è‡ȘæžČæŸ“æœŹ snippetïŒŒćŻŒè‡Žé€»èŸ‘ć…ƒçŽ  spz-custom-discount-toast(#appsAddCartToastFunc) é‡ć€ă€‚ // ä»…äżç•™ DOM 侭第侀äžȘćźžäŸ‹ïŒŒć…¶äœ™é‡ć€ćźžäŸ‹ç§»é™€è‡Șèș«ïŒŒäżèŻé€»èŸ‘ć…ƒçŽ ćŠć…¶ action ćŒ•ç”š(appsAddCartToastFunc)支侀。 const funcs = document.querySelectorAll('#appsAddCartToastFunc'); if (funcs.length > 1 && this.element !== funcs[0]) { this.element.remove(); return; } // ć…šć±€æŠ˜æ‰Ł toast 的ćŒčć‡șç‚čćˆ†æ•Łćœšć€šäžȘæšĄæż/ç»„ä»¶é‡ŒïŒˆć«ćŁ°æ˜ŽćŒ @atcErrorïŒ‰ïŒŒæ— æł•é€äž€ćœšćŒčć‡șć‰ć‰çœźïŒŒ // 故挂蜜时ćč‚ç­‰ćœ°ćŽ»é‡ćč¶æŒ‚ćˆ° bodyïŒ›ćŠ èŽ­ toast æ”čäžșćŒčć‡șć‰æŒ‰éœ€ćŽ»é‡ïŒˆè§ showAddToCartToast this.ensureSingleToastInBody_('cart_match_discount_toast_wrap'); } unmountCallback() {} // ćŒäž€éĄ”éąćŻèƒœæœ‰ć€šäžȘ block 搄è‡ȘæžČæŸ“æœŹ toast snippetïŒˆćŠ‚ć•†èŻŠçš„ discount_automatic + èŽ­ç‰©èœŠæŠœć±‰é‡Œçš„æŠ˜æ‰ŁæšȘćč… // ćŻŒè‡Ž toast 怖求ć‡șçŽ°é‡ć€ idă€‚é‡ć€ id 例 getElementById/querySelector 揊 SPZ ćŠšäœœćŒ•ç”šéƒœćȘć‘œäž­çŹŹäž€äžȘ // äž”èą«ć…łèż›æŠœć±‰çš„é‚Łä»œäŒšèą«æŠœć±‰çš„ transform/overflow èŁć‰Ș/é”™äœă€‚èż™é‡ŒćœšæŒ‚èœœæ—¶ćč‚ç­‰ćŽ»é‡ïŒš // ćȘäżç•™äž€ä»œă€ç§»é™€ć€šäœ™çš„ïŒŒćč¶æŠŠäżç•™çš„æŒ‚ćˆ° bodybody æ˜Ż position:fixed æœ€ćź‰ć…šçš„èœç‚čïŒŒéżć…èą«ä»»äœ•ç„–ć…ˆèŁć‰ȘïŒ‰ă€‚ćŻćć€è°ƒç”šă€‚ ensureSingleToastInBody_(id) { const els = Array.from(document.querySelectorAll('#' + id)); if (!els.length) return; els.slice(1).forEach((el) => el.remove()); const keep = els[0]; if (keep.parentNode !== document.body) { document.body.appendChild(keep); } } // äž»éą˜èŽ­ç‰©èœŠæŠœć±‰æ˜ŻćŠæ‰“ćŒ€ isInCartDrawer_() { return !!document.querySelector('[data-section-type="cart_drawer"] spz-sidebar[open]'); } setupAction_() { this.registerAction('showAddToCartToast', () => { // æŠœć±‰ć†…ćŠ èŽ­ïŒšäž»éą˜æœŹć°±äžäŒšæœ‰ćŠ èŽ­æ•ˆæžœïŒŒç»Ÿäž€ćŒč插件è‡Ș深的 toast // éžæŠœć±‰ïŒšäž»éą˜æœ‰ćŠ èŽ­ä»Łç†ćˆ™æČżç”šäž»éą˜ćŠ èŽ­æ•ˆæžœïŒŒćŠćˆ™æ’ä»¶ć…œćș• const proxyEl = document.getElementById('add-cart-event-proxy'); const inDrawer = this.isInCartDrawer_(); if (!inDrawer && proxyEl) { return; } // ćŒčć‡șć‰æŒ‰éœ€ćŽ»é‡ćč¶æŒ‚ćˆ° bodyćč‚ç­‰ïŒ‰ïŒŒéżć…é‡ć€ id ć‘œäž­é”™ćŻčè±Ąæˆ–èą«æŠœć±‰èŁć‰Ș/错䜍 this.ensureSingleToastInBody_('apps_add_cart_toast_wrap'); const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
Description

 SHIPPING WORLDWIDE.  
💯Payments Via PayPal¼ and CreditCard.
⭐Fast refund Guarantee>> full refund.
😍 96.3% of customers buy 2 items(15% Off) ,buy more, save more.

🌿 The Fringe Tree, also known as the “Snowflake Tree” or “Fragrant Fringe,” originates from East Asia and is a stunning ornamental miniature tree. In recent years, it has become increasingly popular among gardening lovers in Europe and America. Its long, delicate petals resemble soft white tassels, blooming like drifting spring snow — light as mist, elegant as poetry, and full of Eastern aesthetic charm.

🌾 Its flower meaning: purity, devotion, and quiet love.
In Western symbolism, it represents “gentle waiting” and “silent, heartfelt companionship.”

🌾 This type of fringe tree is ideal for pot cultivation. With its graceful form, varied bloom colors, and fresh, delicate fragrance, it adapts well to different climates — both heat- and cold-tolerant. Perfect for balconies, gardens, patios, or front doors. It offers year-round ornamental beauty and brings a calming, natural charm to any corner of your life.

🌟Reasons you will love it:

✅Small and exquisite, suitable for potted plants-the tree shape is elegant and easy to control the height. It is suitable for planting on balconies, courtyards, and in front of doors!

✅Four seasons, rich colors, blooming like snow, charming colors in spring, summer and autumn, and upright branches in winter, very artistic!

✅Natural and elegant fragrance, fresh and not greasy, suitable for you who like tranquility and nature.

✅Strong adaptability, cold and heat resistance, can be planted all year round, high germination rate, easy to maintain!

✅Newbie friendly, suitable for parent-child planting, holiday gifts, personal green plants to enhance the happiness of life!

đŸȘŽPlanting method:

1ïžâƒŁ Sprinkle the seeds evenly into loose and well-drained soil.

2ïžâƒŁ Lightly cover with fine soil (depth of about 5 mm).

3ïžâƒŁ Spray water with a spray bottle to keep it moist and place it in a sunny place.

4ïžâƒŁ Germination in about 10-15 days, temperature control can be used to help germination in the early stage.

5ïžâƒŁ After the seedlings are mature, move them into pots or courtyards, bloom in 3-5 months, and enjoy all year round.

💬 User real evaluation:
🌟 "It looks like a snowy flower tree, white and dreamy, so amazing!"
🌟 "Plant one on the balcony, and the whole house will be fragrant once it blooms!"
🌟 "It's easy to grow, even a novice can grow it, and the flowering period is so romantic~"

🎁Limited time gift of seedling cultivation guide + seedling cultivation gadget to help you easily start your exclusive snowflake tree plan!

our guarantee

♻Easy returns and exchanges within 14 days
Items may be returned or exchanged within 14 days of delivery date.

After-sales service

  • Shipping - Global expressshipping available
  • Returns >> Fast refunds, 100% money back guarantee.
  • If for any reason you are not completely satisfied, please return the product within 90 days.
  • If you have any questions or suggestions, please feel free to contact us and we will provide you with friendly support within 24 hours.