Fall Peony And Pumpkin Wreath - Year Round Wreath

$39.98
🔥Hot Sale🔥:  BUY 1 (HOT SALE)
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Quantity

Description

💝Year Round Wreath for the front door. Enjoy it all year long, never goes out of style. Will add charm and merriment to your decor!💝

❤️What a beautiful way to welcome folks into your space!❤️The Peony pumpkin is the most classic front door decoration this fall! 🔥The perfect combination of Farmhouse, Country, and Rustic in one wreath to adorn your door all Autumn long! 🏠 Enjoy autumn, never goes out of style. Will add charm and joy to your decoration!

💖This lovely farmhouse-style pumpkin door hanger will look lovely gracing your front door this fall! Use this faux peony pumpkin wreath to say "Welcome to our home" throughout the season.💖Enjoy this beautiful, deluxe wreath for years to come! Welcome your guests with this stunning Forever autumn pumpkin wreath.

This Farmhouse Wreath is one of my favorites! Here is a beautifully simple wreath that can be used anywhere you want to brighten a space. Looks great on your front door, side door, or inside for a touch of wreath wherever you put it.

🍁This Beautiful Peony and Pumpkin Wreath is ready for its forever home.🍁Let this wreath take away all your decorating struggles!! This wreath will be perfect for hanging on your front door paired with some pumpkins, hay, and mums on each side of your door!! Make each visit from your friends and family a memorable one with this wreath hanging on your front door or over your mantel!!

Decorating such a luxurious garland will amaze every friend and neighbor who comes to your home.  This will make you incredibly proud that you're leading the way in this year's community wreath decorations!

Specifications

  • Pumpkin measures approximately 24” wide and 24” tall. It is approximately 5” in depth.
  • Style: Handmade Front Door Wreath
  • Measurements are approximate & from tip to tip
  • Applicable throughout the year.
  • Covers indoor/outdoor versatility

  • Selling fast! Other people want this. Over 20 people have this in their carts right now.
  • Star Seller. This seller consistently earned 5-star reviews, shipped on time, and replied quickly to any messages they received.
  • One of our most popular items is back in stock!
  • Hooray! This item ships free to the US.

Customer Reviews:

“Very nice product. The cameras don't capture all of the little details-- It looks even better in person.”

“My husband loved it!! It looks even more beautiful in Person! WOW WOW WOW!”

“Very clean and beautiful! Exactly what I wanted-thank you!!!”

⭐How to use⭐:

  • It can be hung on the wall, door, or even the fireplace during the festival. Or outside the house, garden, or courtyard. This is a nostalgic gift with great collection value and is perfect for family and friends.

NOTE:

  1. Please allow 1~2 cm differences due to manual measurements.
  2. Due to the products being all handmade, the item may be slightly different from the pictures.

CUSTOMER Q&A

⁣Question: Where does this ship from?⁣
Answer: Our products make and ship, America.

Question: How can I track my order?⁣
Answer: As soon as we process your order, you will automatically receive a tracking code via email. It will include instructions and a web link so you always know the status of your order.⁣

  • We truly offer the most stunning, trendy highest-quality products in the world.
  • We will do WHATEVER it takes with outstanding customer service support to assist everyone as we highly value our customer satisfaction with absolute ZERO risks.
  • We make sure that every customer is 100% satisfied in every aspect!
  • If you are not satisfied with receiving the goods, you can apply for a refund.
  • You can pay with PayPal, which will protect your money

🔒 100% Risk-Free Purchase 🔥


👉 Our Guarantee


  • 🌍Global express mail
  • 🔒 100% safe payment
  • ✔️100% money-back guarantee
  • 📞 24/7 customer support

🌎Ship worldwide  ✈  


Please note that transportation is insured and it takes 7-15 working days worldwide. However, you may receive your items earlier. The tracking number will always be sent so that you can track every step of it! Good things are worth the wait! 😉

🔒  100% risk-free purchase  🔥 


If you bought it and feel that it is not suitable for you, please don't worry. we will solve the problem by providing you with a replacement or refund. 100% simple and risk-free process.

const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '78d0199f-a873-4dab-80f9-8de2412ec756'; 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 = '1cacb97b-3d80-4cc9-808e-b57d7f5959f1'; 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 == '1cacb97b-3d80-4cc9-808e-b57d7f5959f1' && 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);