(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕
(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕

(4.8/5⭐⭐⭐⭐⭐) Wooden Hummingbird House-Gift for Nature Lovers 💕

Price

$39.99 $19.89
Save $20.10
813 sold
20% OFF 2nd item
30% OFF 3rd item
50% OFF 4th item

buy all style free shipping

Please select a buy all style free shipping

Quantity

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
 

🔥Choose your favorite style (No need to use promotional codes, thesystem will automatically reduce the priceafter adding to the shopping cart.🛒)

  • If you are not satisfied with the product, you can return it free of charge within 30 days.
  • 🔒Transport Guarantee>> We cooperate with UPS, FedEx or other well-known express companies. 
  • 🔥Worldwide Free shipping on order over $49.00🔥 


🌈Features

  • 🐦【Natural Material】: The Hummingbird House is made of natural cherry, and maple wood, dried, long time to store, etc. Environmentally friendly and durable, strong and breathable, not easily deformed.

undefined

  • 🐦【Easy to use】: You can put the grains or bugs that small birds like to eat, so that the birds fall in love with this place where they can eat, and the shape of the house can also provide rest.

  • 🐦【High Quality Design】: There is a gold metal loop at the top of the hummingbird house, It can be hung anywhere; Exquisite Workmanship, free of wood thorns; Delicate design, Clear and not fade.

undefined

  • 🐦【Widely Use】: Our birdhouses can be used in gardens, balconies, porches, and tree trunks, and can also be hung in offices or wherever you want to hang outside or indoors.

undefined

Habits of the hummingbird include males migrating early to "stake" their territory out, and they can attract up to 25 females! Hang a charming, decorative hummingbird house! They are a very attractive addition to any backyard or garden.

undefined

🌈Specifications

Production Method: Hand Engraving, Grinding and Polishing

Materials: Natural Beechwood

Size: Approximately 5.1" tall x 2" wide.

undefined

 About hummingbird:

🐦Protect Your Hummingbird From Predator and Give A Sweet Home to Them.

Hummingbirds are protected animals. All species of the hummingbird family are listed on the IUCN Red List of Threatened Species. If you love it, please give it a home!

undefined

🌈Note:

🤝We have 24/7/365 ticket and email support. Please contact us at support@mercifule.com if you need any assistance.💖

🤝Limited stock remaining and will soon be sold out!💖

🤝Thank you for shopping with us!💖

📦 Insured Worldwide Shipping: Each order includes real-time tracking details and insurance coverage in the unlikely event that a package gets lost or stolen in transit.

💰 Money Back Guarantee: If your items arrive damaged or become defective within 15 days of normal usage, we will gladly issue out a replacement or refund.

✉️ 24/7 Customer Support: We have a team of live reps ready to help and answer any questions you have within a 24-hour time frame, 7 days a week.

🔒 Safe & Secure Checkouts: We use state-of-the-art SSL Secure encryption to keep your personal and financial information 100% protected.