Val 28.50'' Manual Wing Recliner (Set of 2)

148 sold
$39.99
$269.00
-85%
Color:  Beige
Quantity

Description

Description

  • Each order limited to?1 pc?of during the event.

  • Fast refund>>100%?Money Back Guarantee.
  • If You Are Not Satisfied Within 30 Days, You Can Return It For Free.
  • We Ship From California.
  • Limited Stock, Please Shop Now!

Product Overview

Description

Create a traditional seating area or den with these two manual recliners. To recline these unassuming recliners, all you have to do is push back and a footrest appears. They're built on a solid and engineered wood frame and feature rolled arms with a wingback design for a classically inspired silhouette. Turned front legs support the recliners for added traditional appeal. Upholstered in a polyester and linen blend, the armchairs are filled with foam for just the right amount of support. Button tufting on the back and nailhead trim along the sides decorate the chairs.

Weights & Dimensions

?

Overall:41'' H x 28.50'' W x 34.50'' DSeat:19.25'' H x 20'' W x 21'' DFull Reclined:29'' H x 62'' DArms:24.75'' HBack Height - Seat to Top of Back:21.75''Overall Product Weight:67.46 lb.Minimum Door Width - Side to Side:28.5''Required Back Clearance to Recline:24''User Height:62''

More About This Product

When you buy a?Three Posts? Val 28.50'' Wide Manual Wing Chair Recliner?online from Wayfair, we make it as easy as possible for you to find out when your product will be delivered. Read customer reviews and common Questions and Answers for Three Posts? Part #: W004281860 on this page. If you have any questions about your purchase or any other product for sale, our customer service representatives are available to help.?Whether you just want to buy a?Three Posts? Val 28.50'' Wide Manual Wing Chair Recliner?or shop for your entire home, Wayfair has a zillion things home.

US Express Shipping

Please Do Note That Shipping Is Insured And Takes Within 3-5business Days USA. However, You May Receive Your Items Earlier. Tracking Numbers Will ALWAYS Be Sent So You Can Track It Every Step Of The Way! Cool Things Are Worth Waiting For!?


  • 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 90 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% ProtectedRETURN & WARRANTY
  • 100% Secure Payment With SSL Encryption.
  • If You’re Not 100% Satisfied, Let Us Know And We’ll Make It Right.
  • Orders Ship Within 24 Hours.
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.