Charming Black Halter Spliced Split Long Prom Dress | ZT0460
Charming Black Halter Spliced Split Long Prom Dress | ZT0460

Charming Black Halter Spliced Split Long Prom Dress | ZT0460

$189.00
Color:  Same as Picture
Size:  US2
Quantity
Fast worldwide shipping
Guaranteed Return
Professionally made
Secure payments

Made just for you.
Every Hidresses gown is crafted to match your color, your shape, and your story.

✔️ 70+ colors available — from timeless neutrals to bold statement shades.
Can't find the exact tone you want? Just email us at service@hidresses.com — we're happy to help you match your perfect hue. 🎨

✔️ Custom sizing supported — for a flawless fit.
Leave your bust / waist / hips / height (without shoes) in the order note(special instruction)when you check out.

Each piece is handmade with care, specially tailored for you — no extra charge, no compromises. 💃
It's your dress. Let's make it fit like it. 💫

At Hidresses, we offer custom-made bridesmaid dresses, wedding gowns, and evening dresses, with multiple shipping options available to suit your location and timeline.

🌸 Custom Made
Since each dress is made to order, please note that most of our styles require production time.
We typically require 10-12 business days to process and ship.

⚡ In a hurry?
If you're pressed for time, no worries - just choose our expedited order service.
Add the expedited fee at checkout and your order will be prioritized and processed within 5-8 business days.

Receiving time=Processing time+Shipping time

Processing Time:

Express Shipping Order:Processing time:10-12working days

Rush Order:Processing time:5-9working days

Shipping Time

Shipping Method

Region

Shipping Time (business days)

Shipping Cost (US Dollars)

Express Shipping

United States, France, Germany, United Kingdom, Australia, New Zealand, Canada, Ireland, Switzerland, Sweden, Italy, Austria

5-8

$19.9

All Other Countries

7-15

$29.99

Rush Order

United States, France, Germany, United Kingdom, Australia, New Zealand, Canada, Ireland, Switzerland, Sweden, Italy, Austria

5-8

$49.99

All Other Countries

7-15

$49.99

Welcome to Hidresses,
Please refer to the size chart below to choose the most suitable size.

If you’re unsure about sizing, feel free to email us at service@hidresses.com with your bust, waist, hips, and height.
Our team will be happy to help you select the best fit.

US SIZE
UK/AU SIZE
EUR SIZE
BUST
WAIST
HIPS
HIEGHT
2 4 32 32.5/83 25.5/65 35.75/91 63/160
4 6 34 33.5/84 26.5/68 36.75/92 65/160
6 8 36 34.5/88 27.5/70 37.75/96 65/165
8 10 38 35.5/90 28.5/72 38.75/98 65/165
10 12 40 36.5/93 29.5/75 39.75/101 67/170
12 14 42 38/97 31/79 41.25/105 67/170
14 16 44 39.5/100 32.5/83 42.75/109 69/175
16 18 46 41/104 34/86 44.25/112 69/175
14w 18 44 41/104 34/86 43.5/110 69/175
16w 20 46 43/109 36.25/92 45.5/116 69/175
18w 22 48 45/114 38.5/98 47.5/121 69/175
20w 24 50 47/119 40.75/104 49.5/126 69/175
22w 26 52 49/124 43/109 51.5/131 69/175
24w 28 54 51/130 45.25/115 53.5/136 69/175
26w 30 56 53/135 47.5/121 55.5/141 69/175



The following color swatches are for reference only.

Satin



Chiffon


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.