Galaxy Z Flip Series Cardholder Wallet Case SAMSUNG Flip5 Flip4 Flip3

$10.38
Choose A Color:  Red
Black
Pink
Red
Blue
Purple
Choose A Model:  Galaxy Z Flip5
Quantity
Share the love
Free worldwide shipping
Free 30 day returns
Sustainably made
Secure payments
  1. Sleek Design: Elevate your device with a slim and elegant wallet case designed specifically for the Samsung Galaxy Z Flip & Fold Series. The premium materials and sleek profile complement the sophisticated look of your phone.

  2. Dual Functionality - Phone and Wallet in One: Experience the convenience of having your essentials all in one place. Our innovative cardholder wallet case seamlessly integrates with your Galaxy Z Flip or Fold, providing a dedicated space for your cards, ID, and a bit of cash. Streamline your everyday carry and leave the bulky wallet behind.

  3. Maximum Protection, Minimal Bulk: Crafted with precision to ensure maximum protection for your device. The durable yet lightweight design safeguards your phone from everyday bumps, scratches, and accidental drops, without adding unnecessary bulk.

  4. Easy Access to All Features: No need to compromise functionality for style. Our case allows easy access to all ports, buttons, and features, ensuring a seamless user experience.

  5. Fold-Friendly Design: Tailored specifically for the Galaxy Z Flip & Fold Series, our case is fold-friendly, providing complete protection whether your device is open or closed. Enjoy the full range of motion without compromising on protection.

  6. Secure Closure: The secure closure mechanism keeps your phone and cards safe and sound. No need to worry about items slipping out – our case is designed to hold everything securely in place.

  7. Quality Materials: We prioritize quality, using premium materials that not only enhance the aesthetics of your device but also ensure long-lasting durability. Our cardholder wallet case is built to withstand the test of time.

Region

Timeframe

Standard Carrier

Service standards

  • US

5-8 business days

USPS

Priority Mail

  • Canada

7-15 business days

Canada Post

Priority Mail

  • Australia

5-12 business days

Aramex AU

Priority Mail

  • UK

5-8 business days

Royal Mail

Priority Mail

  • Germany

5-10 business days

DHL

Priority Mail

  • Japan

5-8 business days

JP Post

Priority Mail

Other countries

10-18 business days

United Express

Priority Mail

We also ship to other countries and regions. Please check the checkout page for details.

Return Policy

1. If you are unsatisfied with the quality of the item(s) you received, you can submit a return request within 30 days of delivery. Which means you have 30 days after receiving your item to request a return.

2. If you have a defective or damaged item, you can Contact Support to our customer support team. They will investigate your case and issue you a replacement or refund.

3. If you wish to cancel an order that has already been shipped, you can choose to reject delivery or return the item upon its arrival. The shipping cost of the return will be borne by the buyer and the shipping cost of the original purchase will not be refunded.

4. We do not provide exchanges for products, but you may return unwanted products for a refund and place a new order for the product you would like.

5. If your item has not arrived or is missing. Please contact our customer support team directly for a review.

Return Instructions

1. For return requests please reply directly to your original order email or contact our customer support team.(support@xingjinlong.store)

2. We will process and respond to your return request within two business days when we receive your return request.

3. For returns, you will need to provide a valid order number and provide a reason for the return.

4. Returned products must be unused and kept in their original packaging with all included accessories.

5. Returns must include all items sent in the original package.

Refund Instructions

1. When your return request is approved, we will enter the refund step. (Request review is generally within 2 working days)

2. Your refund will be issued after the product is returned. The refund may take 2 to 7 business days to be processed and sent, depending on the payment method and bank.

3. For your security, the refund will be issued via the original payment method and to the original account you used when placing the order.

4. If your original order includes shipping costs, any shipping costs will not be refunded.

5. The shipping cost of the return will be borne by the buyer. (payment on receipt is not supported)

Black Friday Big Discounts

Limited time discounted price, act quickly!
View more
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.

New arrival