Upgraded Balloon Arch Stand Kit - PONAMFO Balloon Arch Frame with 15 White Rods, Steel Pipes, Balloon Pump and Water Fillable Base, Adjustable Height for Wedding Baby Shower Birthday Party Decoration
Upgraded Balloon Arch Stand Kit - PONAMFO Balloon Arch Frame with 15 White Rods, Steel Pipes, Balloon Pump and Water Fillable Base, Adjustable Height for Wedding Baby Shower Birthday Party Decoration
Upgraded Balloon Arch Stand Kit - PONAMFO Balloon Arch Frame with 15 White Rods, Steel Pipes, Balloon Pump and Water Fillable Base, Adjustable Height for Wedding Baby Shower Birthday Party Decoration
Upgraded Balloon Arch Stand Kit - PONAMFO Balloon Arch Frame with 15 White Rods, Steel Pipes, Balloon Pump and Water Fillable Base, Adjustable Height for Wedding Baby Shower Birthday Party Decoration
Upgraded Balloon Arch Stand Kit - PONAMFO Balloon Arch Frame with 15 White Rods, Steel Pipes, Balloon Pump and Water Fillable Base, Adjustable Height for Wedding Baby Shower Birthday Party Decoration

Upgraded Balloon Arch Stand Kit - PONAMFO Balloon Arch Frame with 15 White Rods, Steel Pipes, Balloon Pump and Water Fillable Base, Adjustable Height for Wedding Baby Shower Birthday Party Decoration

$23.99
$0.00
-$-23.99
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Ponamfo
SKU: ITI-WM-Balloon arch stand-A002

Your party decor with the Upgraded Balloon Arch Stand Kit by PONAMFO! This comprehensive kit includes 15 sturdy white rods, steel pipes, a convenient balloon pump, and a water-fillable base. With adjustable height, it's perfect for weddings, baby showers, birthdays, and more. Create stunning balloon arches effortlessly, making your event unforgettable. Take your decoration game to new heights with this all-in-one kit that ensures your party decor stands out!

Brand name: Ponamfo
Features: Decor, Accerelatory,Sturdy, Easy to Assembly
Occasion: Weddings, Birthday Parties, Baby Showers, Graduation Parties, Corporate Events, Etc...
Manufacture: PONAMFO
Color: White
Size: 17 x 10 x 2.7 inches, 3.4lb
Package includes: 15 foldable white fiberglass rods, 2pcs PVC bags, 2pcs PVC bases, 2pcs metal tubes, 4pcs ground nails, 2 rolls of safety ropes, 50pcs balloon clips, 2 rolls of glues, 2pcs tying tool and a balloon pump
  • [Complete Set of 82PCS] This balloon arch kit contains 15 foldable white fiberglass rods, 2pcs PVC bags, 2pcs PVC bases, 2pcs metal tubes, 4pcs ground nails, 2 rolls of safety ropes, 50pcs balloon clips, 2 rolls of glues, 2pcs tying tool and a balloon pump, everything you need to complete a gorgeous balloon garland, EXCEPT for balloons :)
  • [Party with Essential Arch Tools] Whether it's a birthday bash, wedding extravaganza, bridal shower, baby joy celebration, gender reveal party, or graduation ceremony, our top-notch balloon arch kit ensures you steal the spotlight!
  • [Upgraded Kit] We've taken it up a notch! Say goodbye to PVC tubes; our kit features durable metal materials. Plus, we've switched out the black fiberglass rods for elegant white ones, giving your balloon arch a consistently captivating look.
  • [Endless Fun with Peace of Mind] Installing our balloon arch is easy. step-by-step instructions in the box. We suggest using 150-200 latex balloons, sized 10-12 inches, to bring your arch stand to life.
  • [Satisfaction Guaranteed] Our arch frame is designed for reuse when stored properly. If you encounter any issues with the kit, don't hesitate to reach out.
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.