Home Prefer Boys Beach Hat with Strap Toddler Kids Sun Hats with UV Protection Neck Flap Quick Dry Baseball Caps 2-6Years

$9.99
color
color
Quantity
🎩 Wholesale and Customization Services ✨

Whether you're a wholesaler, retailer, or looking to create a custom design, Home Prefer offers high-quality hats and professional services to meet your needs. We provide flexible wholesale options and competitive pricing to ensure your bulk purchasing requirements. Additionally, we offer personalized customization services, allowing you to design hats with your brand logo, unique patterns, or other specifications.

Whatever your needs may be, Home Prefer is here to provide the perfect solution. Feel free to contact us via email at eva@homeprefer.com for more details.

Shipping

Description

Home Prefer Quick Dry Breathable Wide Brim Sun Protection Fishing Hat – Ideal for Outdoor Adventures

Keep your little ones protected from the sun’s harmful rays with the LLmoway Quick Dry Breathable Wide Brim Sun Protection Fishing Hat. Perfect for outdoor activities, this versatile hat offers excellent sun protection and comfort, ensuring your child enjoys every adventure in style.

Key Features:

  • Sun Protection & UPF 50+: This hat features a wide 6cm/2.4” brim and a 18.5cm/7.28” detachable neck flap that offers excellent UV protection. Rated UPF 50+, it blocks up to 98% of harmful UVA and UVB rays, keeping your child’s skin safe under the sun.

  • Two-Way Wear Design: With a clever foldable design, this hat can be worn in two styles: as a classic baseball cap or a flap hat for extended sun protection. It’s perfect for changing weather and various activities.

  • Windproof & Secure Fit: Equipped with a soft chin strap with hook-and-loop closure, this hat stays securely in place, even on windy days, preventing it from being blown away.

  • Adjustable Fit: The hat features an elastic band at the back and a Velcro closure, ensuring a custom fit for most toddlers and kids with a head circumference of 50-54cm (19.68”-21.25”). This design makes it suitable for children aged 2-6 years old.

  • Breathable & Quick Drying: Made from 100% breathable polyester, this hat is lightweight, quick-drying, and moisture-wicking, keeping your child cool and comfortable during outdoor activities like fishing, hiking, and more.

  • Packable & Portable: Its foldable and packable design makes it incredibly easy to carry on vacations or camping trips without taking up much space.

Product Specifications:

  • Material: 100% Polyester

  • Sun Protection: UPF 50+

  • Hat Circumference: 50-54cm / 19.68”-21.25”

  • Hat Depth: 12cm / 4.72”

  • Brim Width: 6cm / 2.4”

  • Neck Flap: 18.5cm / 7.28” (Detachable)

  • Hat Weight: 62g / 2.18oz

  • Closure Type: Velcro, Chin Strap

  • Care Instructions: Hand Wash Only, Dry Clean Only, Do Not Machine Wash, Do Not Bleach, Do Not Tumble Dry

Occasions:

  • Perfect for outdoor activities such as fishing, safari, hiking, boating, camping, gardening, cycling, and playing at the beach or in the garden.

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.