1/5

Personalized Mens Hawaiian Shirt and Short Set With Photo Print Custom Hawaiian Style Beach Wear Vacation Outfits Sets

Eco-friendly
20% off the 2nd
£35.95
Size

Choose Your Skin Tone

The face color will be made according to the photo you upload, please choose the skin tone of the exposed body!

Choose Your Skin Tone

The face color will be made according to the photo you upload, please choose the skin tone of the exposed body!

Want more styles we don't have? Let us know here.

Recommend
Description
Delivery

About this item

  • Custom Face Hawaiian Outfit Set : You can add photos of your lover, pet or yourself on the hawaiian shirt and short to make it unique. A real hit at the party. Wear a unique shirt at a birthday party, pool party or bachelor party to add more joy to the party and be the king of the party. Focus on the beach. Stand out from the crowd on the beach and show yourself. Attract strangers to strike up a conversation! Please click "Customize Now" and upload the photos
  • Material & Size : Hawaiian beach suits for men were made from high quality material. This tropical shirts for men is soft, comfortable, breathable, lightweight, comfortable to touch, and skin friendly. This quick dry swim trunks dries quickly after getting wet, keeps you cool and Dry & Comfortable. 8 sizes: S-5XL. Perfect for every body type, Please be sure to follow the sizing chart to make sure you purchase the correct size. If you like loose fit, you can choose a size one size larger
  • Unique Design : Men's Hawaiian Shirt featuring with V-neck, short sleeves, button-up design; Beach Shirts with slanted side pockets, perfect for storing phones, sunglasses or gadgets. The summer beach suit bottoms feature elasticated waist with drawcords for comfortable fit. You can easily create a stylish and handsome look with a sun hat and sunglasses. Shows your attractiveness on the summer beach trip. Soft, comfortable, breathable, for you all-day comfort and relaxing on your holiday
  • Personalized Gifts Idea : Surprise for a sweet date. Give your boyfriend Shirt and Short Set with photos of your face on a date to swear sovereignty that he belongs to you only! Heart-warming gift for parents. Send your parents customized Hawaiian shirts before they go on vacation, and wish them a happy holiday! Personalized gift for Father's Day,Valentine's Day, Birthday or Anniversary. Come And Enjoy Your Happy Summer With Your Family!
  • Occasion : Hawaiian-style print styles, suitable for all ages to wear. Perfect for sunny beaches, hawaiian party or fishing, cruise ships, pool parties, beaches, camps, vacations, birthday parties, holidays, bachelor parties, cruise ships, camps or any casual daily wear. Hawaiian shirts sets allow you to fully enjoy the awesome perfect weather. Simple and classic matching of shirts and shorts suits, save you the time of choosing to match
See more

Deliver to

[{country.name}]

[{item.name}]

[{shippingTypeLabel}]

Standard Shipping
Get it by: [{getArrivalTime(country.standard)}]
Express Shipping
Get it by: [{getArrivalTime(country.express)}]

[{getToday()}]

Place Order

[{getSendTime()}]

Order Ships

[{getArrivalTime(country[shippingType])}]

Delivered

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.

HOT SALE

Sign up and save

Subscribe now & get 10% off your first payment!