Christmas Tree Elements Printed Clothes

$60.94
$80.50
-$19.56
Style:  Two-piece Set
Size:  S
Quantity

Description

SKU:BL24110839586
Category:Sweatshirt/Shirt/Suit/Dress
Pattern:Print
Thickness:Conventional
Elasticty:No
Scenes:Daily Social
Material:Polyester
Season:Summer/Autumn/Winter
Style:Casual/Versatile
Size Chart:

Sweatshirt
Yards (Cm)
S M L XL 2XL 3XL 4XL 5XL
Bust 94 99 104 109 114 119 124 129
Waistline 80 85 90 95 100 105 110 115
Hips 97 102 107 112 117 122 127 132
Shoulder Width 43.5 45 46.5 48 49.5 51 52.5 54
Weight-Kg 55-60 60-65 65-70 70-75 75-80 80-85 85-90 90-95

Shirt1Size Length Chest Hip
cm inch cm inch cm inch
S 72 28.3 115 45.3 115 45.3
M 73 28.7 120 47.2 120 47.2
L 74 29.1 125 49.2 125 49.2
XL 75 29.5 132 52.0 132 52.0
2XL 76 29.9 139 54.7 139 54.7
3XL 76 29.9 149 58.7 149 58.7
4XL 76 29.9 159 62.6 159 62.6
5XL 76 29.92 179 70.47 179 70.47

Shirt2Size Length Chest Shoulder Sleeve
cm inch cm inch cm inch cm inch
S 74 29.1 108 42.5 52 20.5 61 24
M 76 29.9 114 44.9 53.5 21.1 62 24.4
L 78 30.7 120 47.2 55 21.7 63 24.8
XL 80 31.5 126 49.6 56.5 22.2 64 25.2
2XL 82 32.3 134 52.8 58 22.8 65 25.6
3XL 83 32.7 142 55.9 60 23.6 66 26
4XL 84 33.1 150 59.1 62 24.4 67 26.4
5XL 85 33.46 156 61.42 64 25.2 68 26.77

Suit1SizeChestTop LengthPants LengthWaist
cminchcminchcminchcminch
S11043.37629.929838.586626
M11444.97730.319938.987027.6
L11846.57830.7110039.377429.1
XL122487931.110139.767830.7
2XL12649.68031.510240.168232.3
3XL13051.28131.8910340.558633.9
Suit2SizeBustTop LengthBottom LengthWaist
cminchcminchcminchcminch
S11043.36826.84316.96626
M11444.96927.24417.37027.6
L11846.57027.64517.77429.1
XL1224871284618.17830.7
2XL12649.67228.34718.58232.3
3XL13051.27328.74818.98633.9
4XL13452.87429.14919.39035.4
5XL13854.37529.55019.79437

DressSizeChestLenght
cminchcminch
S8633.98232.28
M9135.88332.68
L9637.88433.07
XL10139.88533.46
2XL10641.78633.86
3XL11143.78734.25
4XL11645.78834.65
5XL12147.68935.04
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.