6pcs Mothers Day Gnome Diamond Art Cards DIY Handmade Diamond Painting Gift Card

$7.97
Quantity
Worldwide fast shipping
Shipment takes 7-14 business days
Packages are trackable
Secure payments
Wholesale Discounts

Wholesale Discounts - Elevate Your Savings!

Welcome to the Wholesale Discounts page of Fansells! We are delighted to offer our valued wholesale customers an exciting opportunity to save more as you buy more. Our tiered discount structure is designed to support your business's growth by providing significant savings on bulk purchases. Explore our exclusive discounts below and find out how you can maximize your purchasing power today.

Exclusive Wholesale Discount Tiers

Unlock incredible savings with our straightforward and generous discount tiers. Whether you're stocking up for the season or preparing for a big project, we've got you covered with discounts that grow with your order size.

- Spend £100, Save 6% by using coupon code **WS06** at checkout.

- Spend £200, Save 8% by using coupon code **WS08** at checkout.

- Spend £400, Save 10% by using coupon code **WS10** at checkout.

- Spend £800, Save 12% by using coupon code **WS12** at checkout.

- Spend £1600, Save 14% by using coupon code **WS14** at checkout.

How to Apply Your Wholesale Discount

1. Browse Our Selection: Visit our product pages to select the items that meet your business needs.
2. Add to Cart: Once you've made your selections, add the products to your shopping cart.
3. Enter Coupon Code: Proceed to checkout and enter the appropriate coupon code (WS06, WS08, WS10, WS12, WS14) based on your order total in the designated coupon field.
4. Enjoy Your Savings: After applying the coupon code, your discount will be automatically calculated and reflected in your order total.
5. Complete Your Purchase: Fill in your shipping and payment details to finalize your order.

Why Choose Fansells for Your Wholesale Needs?

- Quality Assured: We pride ourselves on offering high-quality products that meet and exceed industry standards.
- Exceptional Value: With our tiered discount system, you get more value for every pound spent.
- Dedicated Support: Our customer service team is here to assist with any inquiries or special requests, ensuring a seamless shopping experience.

For any questions or assistance, please feel free to contact us at brand@fansells.com. We're here to help you make the most of your wholesale purchases.Thank you for choosing Fansells. We're excited to be a part of your business's success story!

Description
Specification:
Origin: Mainland China
Size: 150.00x150.00x10.00mm/5.91x5.91x0.39inch
Material: High quality crystal diamond + thick cardboard

DIY diamond painting usage steps:
1. Open the package and check the diamond painting special tools
2. Check the resin diamond color and arrange it in the coding order
3. Uncover the tape diagram above, you will see many symbols corresponding to the color coding
4. According to the corresponding color-coded fixture corresponding to the resin inlaid diamond
5. It is recommended that one set of resin diamonds be completed faster
6. In order to make a perfect diamond greeting card, put the drawing in one place, and each row of symbols does not have to leave diamonds
7. To cut a good figure on the drawing, please install the classification array to the plane of the material above
8. The splicing needs to be flat, neat, and without cracks

Note:
This is a diy diamond card, not finished, you need to finish it yourself.

Due to the different monitor and light effect, the actual color of the item might be slightly different from the color showed on the pictures. Thank you!
Please allow 1-2cm measuring deviation due to manual measurement.


Package Content:
1 Set x Diamond Card Paper + Envelopes (6 cards + 6 envelopes)
1 Set x Diamond Painting Tools (Point Drilling Pen, Speed Plate, Drilling Bag)

Selling point content

6pcs 5D Rhinestone Arts Greetings Birthday Card DIY Diamond Art Greeting Cards Handmade 5D Rhinestone Embroidery Arts Cards Kits

Features:

1. Vibrant Colors: The bright and vivid colors of the diamond painting greeting cards make them appear more realistic and lively. This added vibrancy enhances the overall aesthetic appeal, making your greetings stand out beautifully.
2. Easy to Create: These 5D rhinestone arts greetings birthday cards are simple to make, making them suitable for both beginners and adults. The straightforward process ensures that anyone can enjoy creating a beautiful card without needing advanced crafting skills.
3. Personal Touch: The DIY aspect of these diamond art greeting cards allows you to add a personal touch, showing the recipient your love and sincerity. This hands-on approach makes the card a heartfelt and meaningful gift that is sure to be cherished.
4. Engaging Activity: Creating diamond painting christmas cards is a relaxing and enjoyable activity. It provides a perfect way to unwind and spend quality time, whether you're doing it alone or with family and friends.
5. Unique Design: Each diamond art christmas card features a unique and intricate design that stands out. This uniqueness ensures that your greeting is not only special but also memorable, leaving a lasting impression on the recipient.


Customer Reviews
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.