🌸 Everlasting Garden Blooms - Handmade Metal Flower Garden Stake🐦

🌸 Everlasting Garden Blooms - Handmade Metal Flower Garden Stake🐦

$39.99
$99.99
people are viewing this right now
Color: 🔥Red
Buy More Save More:
Please select a Buy More Save More
Quantity
Product was out of stock.
Product is unavailable.
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'c739d0e2-4898-49f8-858e-e02727c39464'; 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 = '5cdbd9cd-5c99-4a4b-bcf6-c5c523b25fb6'; 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 == '5cdbd9cd-5c99-4a4b-bcf6-c5c523b25fb6' && 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 = '5cdbd9cd-5c99-4a4b-bcf6-c5c523b25fb6'; 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() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return 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

BRING YOUR GARDEN TO LIFE

Turn any outdoor corner into a lively and inviting garden space. This handmade metal flower stake works as both a decorative sculpture and a functional garden accent. Its glossy petals reflect sunlight throughout the day, creating a beautiful focal point among plants, lawns, and pathways. Whether placed in a flower bed or near a walkway, it adds instant color and personality to your outdoor environment. Instead of ordinary garden décor, this flower brings movement, light, and natural charm that makes your garden feel alive.

A MINI BIRD BATH FOR BACKYARD BIRDS

Backyard birds are always looking for safe places to drink and cool off. The deep bowl center of this flower stake doubles as a convenient mini bird bath. Simply add a small amount of water and watch local birds stop by for a refreshing drink. It transforms your garden into a welcoming wildlife spot while adding gentle natural activity to your yard. Bird lovers especially appreciate how a small water source can attract more feathered visitors and bring daily life and movement into the garden.

POLLINATOR FRIENDLY WATER STATION

Pollinators such as bees and butterflies play a vital role in keeping gardens healthy. The shallow bowl design provides an accessible place where these beneficial insects can safely drink water. Unlike deep containers, this flower bowl offers a comfortable landing spot where pollinators can hydrate without risk. Adding a simple water source like this encourages more natural garden activity and helps support the small creatures that keep your flowers blooming season after season.

HANDCRAFTED METAL FLOWER ART

Each flower stake is carefully shaped and finished by hand, giving every piece its own subtle character. The metal petals are formed to resemble a blooming flower, creating a sculpture that feels both artistic and natural. The glossy finish adds depth and vibrancy to the design, allowing the flower to catch the light beautifully. Instead of mass-produced plastic décor, this handcrafted metal piece offers a more refined and durable decorative element for your outdoor space.

SUNLIGHT REFLECTING GLOSS FINISH

The glossy metal finish allows the flower to reflect sunlight in subtle and beautiful ways. As the sun moves throughout the day, the surface catches the light and creates soft highlights across the petals. This simple effect helps the flower stand out among greenery and adds a sense of brightness and movement to your garden. Even a small decorative piece like this can dramatically enhance the visual appeal of outdoor spaces when it interacts naturally with light.

BUILT FOR OUTDOOR WEATHER

Designed specifically for outdoor use, the sturdy metal construction helps this flower withstand changing weather conditions. From sunny afternoons to light rain showers, the durable material is made to remain beautiful season after season. Unlike fragile garden decorations, this piece is built to stay in place and continue brightening your garden through everyday outdoor exposure.

EASY STAKE INSTALLATION

Setting up this garden flower stake takes only seconds. The pointed metal stake slides easily into soil, allowing you to place it wherever you like—flower beds, lawn edges, garden borders, or even decorative planters. There are no tools, assembly, or complicated installation required. Simply push the stake into the ground and your new garden accent is ready to enjoy.

PERFECT FOR FLOWER BEDS & PATHWAYS

This decorative flower stake works beautifully in many garden layouts. Place it along pathways to guide visitors through your garden, add it among flower beds for extra color, or position it near patios and outdoor seating areas for visual interest. Its compact size allows it to blend naturally with plants while still standing out as a unique decorative feature.

CREATE A POLLINATOR FRIENDLY GARDEN

Even a small water source can make a big difference for pollinators visiting your garden. By filling the flower bowl with water, you create a simple hydration spot for bees, butterflies, and other beneficial insects. Supporting pollinators not only helps local ecosystems but also improves the health and vitality of your garden plants.

A CHARMING GIFT FOR GARDEN LOVERS

For anyone who loves gardening, nature, or outdoor décor, this metal flower stake makes a thoughtful and unique gift. Its combination of artistic design and practical use creates something that can be enjoyed every day in the garden. Whether given for birthdays, housewarmings, or holidays, it’s a gift that adds lasting beauty and a touch of nature to any outdoor space.

Frost-resistant, made of safe and non-toxic materials, and coated with a rust-proof layer.

SPECIFICATION

✅ Material: Handcrafted metal
✅ Flower Diameter: Approx. 6 in / 15 cm
✅ Bowl Depth: Approx. 2 in / 5 cm
✅ Overall Height: Approx. 24 in / 60 cm
✅ Finish: Glossy, hand-applied color
✅ Use: Outdoor garden decor, bird bath, pollinator water station
✅ Package Includes: 1 × Metal Flower Garden Stake

FAQ

1. Is the flower stake weather resistant?
Yes. The stake is made from durable metal with a protective finish designed to withstand outdoor conditions such as rain, sun, and wind.

2. How tall is the garden stake?
The overall height of the stake is approximately 21.65 inches (55 cm), making it visible among flowers and garden plants.

3. What are the dimensions of the flower bowl?
The flower bowl has a diameter of about 6 inches (15 cm) and a depth of about 2 inches (5 cm).

4. Can the bowl hold water for birds or pollinators?
Yes. The bowl can collect rainwater or hold a small amount of water, allowing birds and beneficial insects to drink or bathe.

5. Is the stake easy to install?
Yes. Simply insert the pointed metal stake directly into soil, garden beds, or planters. No tools or assembly are required.

Convenient to Use and Clean: We recommend performing a quick check every 2–3 days and promptly clearing away any debris after rain to better safeguard the health of the birds. The flower-shaped feeding head features a detachable design—meaning there is no need to pull out the entire unit—making the cleaning process much easier.

Tipps: To help bees drink safely, small stones or floating platforms can be placed on the water's surface in the feeder, allowing bees and other small insects to climb out with ease.

WHY US?

We work directly with manufacturers all over the world to ensure the best quality of our products. We have a 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

The Checkout Process is Guaranteed to be 100% Safe and Secure with Visa, Mastercard, AMex, Discover, Apple Pay or PayPal.

100% Satisfaction Guaranteed With Every Order.

MONEY BACK GUARANTEE
We want you to be 100% satisfied with the products you buy from us. If for ANY reason you are not satisfied with your purchase, we offer an iron-clad money back guarantee.

Buying online can be a daunting task, so we want you to realize that there is absolutely ZERO risk in buying something and trying it out. If you don’t like it, we’ll make it right… It’s our promise!

Free worldwide shipping

Enjoy free shipping on every order, delivered to your doorstep no matter where you are in the world.

Free returns

Shop with confidence with our hassle-free returns policy, ensuring you love what you buy.

Sustainably made

Designed with the planet in mind, all our products are committed to sustainable practices.

Secure payments

Your payment information is always protected with our advanced, encrypted checkout security.