Walker Edison | 4-Piece Boho Rope Patio Chat Set

28 sold
$48.95
$977.00
-95%
Quantity

Description

Boho Handmade Rope Weave
Our 4-piece boho patio furniture set is meticulously crafted from delicate PP rope, boasting a visually striking design and exceptional comfort. In comparison to conventional rattan materials, the thoughtfully engineered frame and rope are specifically designed to withstand even the harshest weather conditions. The handmade details of this material allow this set to blend seamlessly with your outdoor decor.

Specifications

Place of OriginViet Nam
Main ColorGrey
Main MaterialWoven Rope
FillerFoam
Product StyleClassic, Farmhouse, French Country, Luxury, Modern
Use CaseGarden & Outdoor
Outdoor Seating TypeSofa Seating Groups
Set DesignComplete Patio Set
Cushions IncludedYes
Frame DurabilityWeather Resistant Frame
Cushion DurabilityFade Resistant Cushion
Fabric TypePremium Olefin Fabric
Rope Type5mm Premium PP Rope
Coffee Table MaterialAcacia Wood
Other FeaturesAdjustable Feet/Weather-Resistent Steel Frame/Removable Cover
Dangerous Goods#dangerFlag#
OLEFIN Fabric Cushions
The seat and back cushions of these 4-piece patio furniture sets are constructed with OLEFIN fabric upholstered in 200G top-grade fabric, measuring 3.9 inches in thickness.
Acacia Wood Table
The coffee table in our patio furniture set is Made with acacia wood that brings a sleek and exotic look to your space, this durable hardwood naturally withstands outdoor elements and will not darken over time. Acacia wood is perfect as a solid, heavy frame that resists wear and tear.
Free Combination
You have the flexibility to mix and match our sofa set according to your specific requirements, allowing you to seamlessly cater to various scenarios such as business meetings, leisurely movie nights, or casual hangouts with friends.
Highlights&Summary
Highlights[PP Rope][Metal Frame] / [3.9Inch Thick Seat & Back Cushion] / [Acacia Table] / [Boho Design] / [OLEFIN Fabric] / [Cushion Covers Water Repellent & UV protected & Fade-resistant and Abrasion-resistant] / [Removable and Washable Cushion] /[Large Carrying Capacity] / [Adjustable Feet Design]
SummaryThis 4-piece set will give your outdoor space a fresh look that combines modern patio design with classic coastal farmhouse style. It includes one loveseat, two armchairs, and a rectangular acacia wood coffee table - all made from solid metal that's resistant to weather and water damage. The seating features open silhouettes with inviting arms and backs woven from rope for an added touch of natural charm. Plus, the machine-washable covers make clean-up after gatherings super easy!
Specifications
Product Dimension(Overall)Single Sofa:25.19 x 27.75 x 27.55 inches Loveseat: 51.18 x 27.75 x 28 inches Coffee Table:35.43 x 19.68 x16.53 inches
Product WeightSingle Sofa: 20.28 lbs * 2 Loveseat: 34.83 lbs Coffee Table: 16.31 lbs Total: 91.7 lbs
Package DimensionPackage1: 50.59 x 23.62 x 13.18 inches Package2: 23.62 x 23.62 x 22.04 inches
Package WeightPackage1: 68.78 lbs Package2: 44.02 lbs Total:112.8 lbs
Pieces Included1*Loveseat+2*Single Sofa +1*Coffee Table
Number of Package2
Loveseat Sofa Weight Capacity705 LBS
Single Sofa Weight Capacity350 LBS
Table Weight Capacity176 LBS
Number of Package2
ColorGrey / Beige / Navy Blue
MaterialPP Rope /Metal Frame/ Olefin Fabric+Foam / Acacia Wood Table
Country of OriginVietnam
Estimated Time to Assemble30-40 minutes
Product Notice
Outdoor Product Care NoticeTo remove dirt and debris, vacuum with a dust-brush attachment or use a dry paintbrush. Clean with a mild soap solution, scrub with a sponge, rinse with cold water, and dry completely. When outdoor furniture is not in use, we recommend covering all the furniture to protect it against the elements.
Color NoticeReal Product's Color may be a little different from the image due to the lighting or monitor's display.
Size NoticeManual measurement has been used, there may be some reasonable error.
Assembly NoticeIt is important to align the screw holes accurately and tighten the screws only after ensuring that all holes are properly aligned and secured.
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.