Ruffle Evil Eye One Piece Swimsuit

$29.99 $41.99
Size:  S
Quantity
Share the love
Description
Chill and chic, our Ruffle Evil Eye One piece Swimsuit Cover UP is everything you are looking for. For parties, travel, etc.,This swimsuit has ruffled shoulders and a matching cover-up in the same color,you will stands out from the crowd.

Product Code: NA19589O2

Publisher:PANG

Details:

  • Floral
  • Ruffle
  • Plunging neck
  • Removable pads
  • Regular wash
  • Fabric:82% polyester 18% spandex
  • Pattern:Evil Eye
  • Lining:Have lining 82% polyester 18% spandex
  • Underwire:No underwire
    Returns & Exchanges

    SPORLIKE is here to spoil you. We hope you love your order, but if you are not completely satisfied with your purchase we accept returns & exchanges.

    Returns & Exchanges Requirements:


    Merchandise must be returned within 30 days of the order delivery date.
    -Merchandise must be unworn, unwashed, unstained and unperfumed.
    -Merchandise must have all tags, including any hangtags, attached.
    -Any products marked ‘FINAL SALE' cannot be returned.

    -Our swimwear comes with a removeable hygiene liner to ensure your safety - return items cannot be accepted if the liner is removed. Please try on your Sporlike items over your underwear without removing the hygiene liner.

    -For sanitary reasons, bracelets, earrings, bags, beach blankets, towels, swimming rings, and floaties are not eligible for returns or exchanges unless there is a quality issue.


    -Please note if you paid for shipping at the time of your original order, you will not be credited the cost of shipping when we receive your return. If your return does not adhere to the requirements it may be sent back at additional cost to the customer.

    Return/exchange Process

    Return shipping fees are at the customer's own expense.
    We do not accept returned items that were sent back directly without notifying us first.

    Step 1: Please email our customer service representatives at service@sporlike.com to get a return authorization and return address. 

    Step 2: After receiving your email with exchange/return request, our customer service representatives will send the exchange/return instructions back to you via email. Please follow the instructions to process the exchange/return. 

    Step 3: For refund:
    For Paypal user: You should expect to see the amount re-appear in your bank account in the next business days.
    For credit card user:You should expect to see the amount re-appear in your bank account in the next 5-10 business days.

    Order Cancellation

    For order cancel, Free order cancellration during 6 hours after purchase.
    For refund:
    For Paypal user: You should expect to see the amount re-appear in your bank account in the next business days.
    For credit card user:You should expect to see the amount re-appear in your bank account in the next 5-10 business days.

    Contact Us

    If you run into any issues, feel free to drop us an email service@sporlike.com

    Click here to return.

    Care Instructions
    • Machine Wash cold delicate cycle
    • Do not bleach
    • Do not tumble dry
    • Line dry in shade
    • Cool iron if needed
    • Do not dry clean
    Care Instructions:
    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.