Elegant Grey Waist Spliced Ruffle Hem Straight Leg Skirt

$39.00
Size : S(Fit for EU 38-40, US 6-8, UK/AU 10-12, IT 42-44)
Color : Dark Blue
Quantity
We accept

Description

Fabric: Cotton 45%, Polyester 55%
Size & Fit: This garment fits true to size.
Length: Size 3XL measures 39"from waist to hem.
Waist:Fitted - elastic waist allows stretch
Hip: Loosely Fitted. room for hips.
Hand Wash Cold.

WHAT DELIVERY OPTIONS DO I HAVE?

When your destination country is the U.S, UK, Canada or other countries, you can choose between Standard Delivery, Free Shipping, Express Delivery and VIP Shipping.

STANDARD DELIVERY:

15-30 business days

Standard delivery is free for orders over $99.9. The discount applies automatically at the checkout.

During peak seasons and promotional sales, delivery might take a little longer.

FREE SHIPPING

FREE on orders over $99.9

It takes around 9 to 15 business days to US, 10 to 25 business days to Australia, Germany, France and Italy.

It may take longer than 15 business days to other countries.

EXPRESS DELIVERY:

7-15 business days

Shipping cost:  $18.99

During peak seasons and promotional sales, delivery might take a little longer.

VIP Shipping:

Shipping cost:  $38

Usually it takes around 3 to 7 business days.

WHERE DOES Soodress DELIVER?

We ship worldwide, including United States, United Kindom, Canada, France, Germany, and so on.

 We ship orders worldwide Monday – Friday, except public holidays. Please note that we do not ship to APO/FPO/DPO addresses.

HOW CAN I TRACK MY ORDER?

Our delivery time starts from the moment an order is accepted and includes a 24-hour period where your items will be processed and dispatched on business days. Please note: this can take longer during promotional sales.

As soon as your order is packed we will send you a shipment confirmation email with the delivery information and a link to track your order online. Please note, that it can take some days before the tracking information is available.

You will also be able to track your order in your account.

TAX AND DUTIES

Taxes and duties are calculated according to your shipping destination and itemized on the Checkout page. Make sure you select your location to view the correct local market pricing, delivery times and shipping costs.

We ship to all locations on a DDU (Delivery Duty Unpaid) basis, which means that product prices displayed are exclusive of all taxes and duties.

Once your order arrives at its destination, you will be required to pay all import duties, customs and local sales taxes for the location that you’re shipping to. After you have placed your order, we’ll email you to seek your acceptance of these terms. For an estimate of taxes and duties on your purchase, please contact your local customs.

SHIPPING INFO

Shipping

Shipping Method Shipping Time Shipping Fee
Standard 7-13 business days $9.99

Receiving time = Processing time + Shipping time

FREE shipping on orders over $79.00+

    Returns Policy

    1.Return within 30 days from the delivered date.

    2.Items received within 30 days from the delivered date.

    3.Items received unused, undamaged and in original package.

    4.Return shipping fee is paid by buyer.

    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.