VCSHOES Bling Bling Glossy Ankle Strap Rhinestone Peep Toe Stiletto High Heel Platform Sandals

$106.68
Color:  Pink
Size:  29
Quantity

Description

Gender: For
Style: Fashion.Korean
Occasion: Casual.Party/Club.Office/Career
Heel Height: 11cm
Platform Height: 1.5cm
Season: Spring.Summer.Fall/Autumn.Winter
Package Contents: 1 x Shoes (Pair)

Size Guide:
28 = foot length 18.5-19cm (Foot width=6.5-7cm)
29 = foot length 19-19.5cm (Foot width=7cm)
30 = foot length 19.5-20cm (Foot width=7-7.5cm)
31 = foot length 20-20.5cm (Foot width=7.5cm)
32 = foot length 20.5-21cm (Foot width=7.5-8cm)
33 = foot length 21-21.5cm (Foot width=8cm)
34 = foot length 21.5-22cm (Foot width=8-8.5cm)
35 = foot length 22-22.5cm (Foot width=8.5cm)
36 = foot length 22.5-23cm (Foot width=8.5-9cm)
37 = foot length 23-23.5cm (Foot width=9cm)
38 = foot length 23.5-24cm (Foot width=9-9.5cm)
39 = foot length 24-24.5cm (Foot width=9.5-10cm)
40 = foot length 24.5-25cm (Foot width=10-10.5cm)
41 = foot length 25-25.5cm (Foot width=10.5-11cm)
42 = foot length 25.5-26cm (Foot width=11-11.5cm)
43 = foot length 26-26.5cm (Foot width=11.5-12cm)
44 = foot length 26.5-27cm (Foot width=12-12.5cm)
45 = foot length 27-27.5cm (Foot width=12.5-13cm)
46 = foot length 27.5-28cm (Foot width=13-13.5cm)
47 = foot length 28-28.5cm (Foot width=13.5-14cm)
48 = foot length 28.5-29cm (Foot width=14-14.5cm)
49 = foot length 29-29.5cm (Foot width=14.5-15cm)
50 = foot length 29.5-30cm (Foot width=15-15.5cm)
51 = foot length 30-30.5cm (Foot width=15.5-16cm)
52 = foot length 30.5-31cm (Foot width=16-16.5cm)

Kindly Tip
1. Conversion 1 cm = 0.39inch
These size is about Asian Size. general get one size smaller than US/EU size. will be sincerely appreciated.

2. Please be reminded that due lighting effects. monitor brightness contrast settings etc. there could be some slight differences in the color tone of the website photo and the actual item.

Note: Please choice larger size if your foot is wide or thick.

Return Policy

Refund Policy


Thank you for shopping at VCshoes. Our online shop provides unique fashion products from our independent designers, backed by high quality material and reliable production. Our production team inspect each product before packaging to make sure it meets our dispatch standards.


If you are not entirely satisfied with your purchase, our refund policy is valid for up to 30 days. If 30 days have gone by since you received your purchase, unfortunately we can’t offer you a refund or exchange and you will only be issued store credit.

Refunds will also not be accepted if items are not in their original condition, with tags attached (including the cotton dust bag).

EXCHANGES/RETURNS

We offer 30 days to return your items by from date of receiving, as long as the items are still in their original condition and tags still attached.

Please note we do not cover returns postage.

It can take up to 5 business days for your return to be processed by the warehouse and once it has we will process the refund back to the original payment method.

Once you receive this email, it can take up to 5 business days for the funds to reach your account, depending on your payment provider.


ORDER CANCELLATION

We offer a full refund if the order is cancelled within 24 hours of your purchase. Please submit a help query to sophia@vcshoes.com if you decide to cancel your order. For orders cancelled after 24 hours of purchase, but have not yet been shipped we will offer a partial refund, after charging a 15% cancellation fee. We will NOT accept a cancellation request once the order has been shipped.

CONTACT US

If you run into any further issues, feel free to email us at sophia@vcshoes.com

Shipping Policy

Processing Time

After your payment is authorized and verified, Orders are processed within 3 business days. This is just an estimate and doesn't include weekends or holidays.

Delivery Time

Free Standard Shipping deliver time 12-20 business days

Shipping Costs

Standard shipping: Free

Duties and Taxes

You may need pay for Local Customs Import Tariffs, it's determined by local law. Usually it will be on behalf of the charges by the courier company, if the courier company charged you, please ask them for the reason.

Want to contact us? You can send mail to sophia@vchoes.com

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.