Quail Egg Card Message,Unique Mother's Day Idea.

people are viewing this right now
📦Produced in the USA and UK
$15.00
$30.00
-$15.00
  • Deliver to: |
Egg Color:  All natural spotted
Note Wording:  Custom note
Quantity

Description

The most unique Mother's day greeting card your mother will ever receive! Show your love for your mother with these totally unique adorable crack-able egg Mother's day cards that can be customized exactly to your mother. The perfect Mother's day gift, use for a greeting card, a nontangible gift announcement, a Mother's day coupon, or so much more.

Color:



PRODUCT INFO

🌼 Each egg is a real unfertilized quail egg that has been emptied, cleaned, and sanitized through a small hole in the bottom!

🌼 Your selected note style comes inside the egg ready to be cracked open!

🌼 Choose from one of our 12 premade note wording options shown in the listing photos, or create your own custom note!

🌼 For custom notes please select the option labeled "Custom note" and type your note wording into the "Personalization" box before adding the item to your cart. Your wording will be printed EXACTLY as you type it so please be sure to proofread.

🌼 Personalization box is ONLY for the "Custom Note" option. Note options 1-12 are not customizable/personalizable. Do not write anything in the personalization box unless you selected the "Custom Note" option or your order will need to be canceled.

🌼 If your order contains a variety of eggs we will write on the bottom of each box in pencil to indicate which note is in which box


SHIPPING

🌼 USPS shipping times are ESTIMATES and are not guaranteed by the Post office. We do not offer any delivery date guarantees due to the fact that all packages are subject to possible delays as stated by the post office. It is the customer's responsibility to order in a timely manner to account for possible shipping delays.

🌼 We do not offer returns or refunds on orders that may arrive after the estimated delivery times since time frames are only estimates.

🌼 We offer the choice of USPS Standard shipping and USPS Priority shipping.

🌼 All eggs in any given order will ship from our shop to only ONE address. We'd be happy to ship single eggs directly to your family and friends if you place a separate order for each separate address.

🌼 Production times vary based on how many orders we have so please check our store page to see what our current production time is 😊

🌼Please feel free to let us know if you have any questions before you order. We are friendly, enthusiastic, and we look forward to talking with you!

Resale of our product is not permissible without written consent in a signed contract. In purchasing our products you are agreeing that you will be using our products for your personal and private use only with no intention of reselling or redistributing the product whether for a fee or without charge, and will not reproduce, duplicate, copy, sell, transfer, trade, resell, re-provision, or redistribute the product

Any breach of this agreement will result in immediate legal action and appropriate fees.

Shipping & Returns

  • Orders can be cancelled or modified within 2 hours after being placed.
  • International orders: It may take additional days if orders have to go through customs. We have no influence on the customs process and apologize for any inconvenience due to delivery delays resulting from this.
  • For more detailed information and instructions, please visit our Replacement & Refund Policy.
  • Learn more about Shipping Policy here.

Personalization

  • Please complete fields required to customize options (Name/Characteristics) and recheck carefully all the customized options.
  • Text: Standard English excluding special characters, emojis to ensure the best looking.
  • Characteristics: Pick one-by-one options that match your description.
  • The last step, click “ADD TO CART” and wait for us to create your wonderful creation ❤️.
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.