Modern 58“ TV stands & Media Console with Sliding Barn Door

$259.99 $299.99 Save $40.00
Color:  White
Quantity
Free Shipping And Delivery Within 3-5 Business Days
30-day Return
Payment Safety

Description

Feature:

  • Farmhouse Style TV Mount: Our modern TV mount is a perfect combination of retro, industrial and modern styles, which can perfectly fit different decor styles and existing furniture. Roomy top accommodates TVs up to 65" and is also great for displaying picture frames, plants, and more.

  • Convenient Dual Sliding Doors: Quiet and smooth sliding mesh barn doors provide easy access to all cabinets. By adjusting the barn door in any position, our 58-inch TV stand can meet your personal storage needs. 2 circular cable management cutouts on the back to help you organize your power cords in an orderly manner.

  • Upgraded Material & Sturdy Construction: Selected high-quality engineered wood and durable metal sliders ensure this farmhouse TV mount can hold up to 300 lbs and have a long service life. In addition, the widened bottom effectively improves the overall stability and reduces potential safety risks.

  • Ample Storage Space: With 2 open center compartments and 2 adjustable cabinets with doors, our TV stand cabinet provides storage space for your DVDs, video game systems, cable boxes, books, magazines and other audio-visual equipment Offers ample storage space.

  • Easy Assembly and Size Info: When fully assembled, the entire TV stand measures 58(L) x 15.8(W) x 34(H) inches. This TV console table comes with numbered parts and easy-to-follow instructions to help you get a functional media entertainment center in no time. If you are in contact with the TV cabinet for the first time, it is recommended that two people cooperate.

Specification:

  • Material: Engineered Wood
  • Product Dimensions: 58(L) x 15.8(W) x 34(H) in
  • Color: Brown, Grey, White
  • Shape: Rectangular
  • Style: Farmhouse

Shipping Policy

Ship from USA(1-3 business days for processing)

The shipping scope includes all regions in the United States excluding Alaska, Hawaii, Puerto Rico, and Guam.

Shipping Method Shipping Time Costs
STANDARD SHIPPING Estimated Delivery Time:3-5 Business Days Free

* Shipping time is estimated and commences from the date of shipping, rather than the date of order, and can take longer than expected date due to invalid address, customs clearance procedures or other causes.


* Please contact us within 3 months of shipment if the package does not arrive in time. Note that overdue requests may not be accepted.


During peak sale season, the delivery time of your package(s) may take a little bit longer. Thanks for your patience. Please go to "How To Track" page to learn how to track your items.
Return & Refund

Return Policy

We hope you love what you've ordered! But just in case you're not 100% satisfied, we've made the return process super easy.

How long do I have to make a return?

Please contact us within 30 days upon receiving the items to initiate the return process if you are not satisfied with your order.

What is the return method, and do I have to pay a return shipping charge

Pack your items carefully and send them through your local post office to make sure they arrive safely.
(Return by yourself at your own cost)

How do I make a return?



1. Please Contact Us to get in touch with our customer service team and describe the items you want to return and the reason for your return.

2. Pack your items carefully and send them through your local post office to make sure they arrive safely.

3. We will process the return or exchange as soon as we receive your package.

4. Once your refund is issued, you will receive a confirmation email. TOLEAD cannot refund, reimburse, cover, or otherwise be responsible for any fees not paid to tolead.com. This includes any customs taxes or VAT as well as any return shipping costs you may incur in the refund process. Refunds are issued back to the original form of payment used to purchase the order.

How can I get the return address?

We have warehouses in USA! If you want to return the items to the nearest return address, please contact us and our customer service representatives will get back to you within 24 hours.

Can I still return items if they are worn, damaged, or have the tags removed?

1. Items must be returned unworn, unwashed, undamaged, and with all original tags attached.

2. Items with non-returnable marks and free gifts cannot be returned.


Note:

1. Please confirm the return address with our customer service. The Wrong return address will affect processing your return.

2. Please be sure to double-check your returns before shipping them out. We will not be held responsible for the return of non-TOLEAD products.

3. If you receive a damaged/defective item, please contact TOLEAD Customer Service within 24 hours of receipt.

How will I get my refund?

Your request will be processed within 1-3 business days after we receive your return. The refund will be issued to your bank account or the original payment account, as per your request.

Note:

1. The original shipping fee and shipping guarantee are non-refundable.

2. Please contact us within 3 months if you have any issues with your orders. Note that overdue requests may not be accepted.
Do I need to pay for the restock fee?
There is no restocking fee for the returned items that meet the condition of selling.
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.