Go-Go-drinks-buddy

$14.99 $29.99 Save 50%
Colour:  Black
Quantity:  1PCS
Quantity
Share the love
Description
PRODUCT DESCRIPTION
  • When we drink canned drinks, we usually can't open the lid and even break the handle ring or hurt our hands, it's annoying. Introducing Go-Go-drinks-buddya bar tool designed to help safely remove the top of almost any can with leaving no sharp edges. No more hurting and laborious, enhancing our drinking experience.

Main Features

  • Create A Smooth Pour Drink
    Locking mechanism securely locks cutting wheel in place to ensure a consistent cut and reduced strain on our hands. And removing the top of the can allows us to pour and enjoy the drink without interruption.

  • Fits Almost Any Can
  • Go-Go-drinks-buddy can be used on most 8-19 oz beverage cans, such as the canned wine, canned cocktails, energy drinks, iced coffee, soda/seltzer, and other canned drinks. Just enjoy your cold drink anytime and anywhere!

  • Enjoy A Full Drink Taste
  • Never afraid of the grip hook was snapped or even cut your fingers and mouth. Just own Go-Go-drinks-buddy and open cans with ease in seconds! Removing the entire top allows our nose to enjoy the full taste of the beverage just like a glass cup.

  • DIY Your Drinks As Your Flavor
  • By removing the entire top of the can, it allows us to add supplementary spices to our favorite canned drinks easier. Whether you like to mix it with soda pop or just add a little citrus in your beer, it's all available. Also, you can take advantage of an empty can to arrange and plant flowers, or as a pen container,  just get your imagination started!

  • Take it on the Go
  • Perfect size for almost any beer can, so forget about the mug, and you can enjoy your favorite beer at a party, at the beach or a barbeque. Simply snap the handle closed for safe storage and put it into your pocket to take it anywhere and enjoy your beer anytime.

How to Use

  • 1. Grab the top edge Or the bottom edge of the can; (Don't grab the center of the can in order to avoid overflowing. )
  • 2. Pull out the opener handle and place it on the top of the can;
  • 3. Press the handle go back, hold and rotate;
  • 4. Done, enjoy your drinks now.

Specifications

Material
PC+ABS
Type Go-Go-drinks-buddy
Product Weight 63G
Product Size 9.5 × 6 × 1.5cm
Package Contents  1 × Go-Go-drinks-buddy

 

Note

  • Due to manual measurements, please allow slight measurement deviations.
  • Due to the different display and lighting effects, the actual color of the item may be slightly different from the color displayed on the picture.

Shipping:

  • Free Shipping Worldwide: Over 66.66 dollars.
  • We processes orders between Monday and Friday. Orders will be processed within 15 business days of ordering and shipped out the next day after the processing day. We don't ship on weekends.

HOW TO PAY
If you want to checkout with Credit Card. Please Click Paypal and Search for ‘Pay with Debit or Credit Card’

Enter your Payment details, your Billing Address, and your Contact Information

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.