Metal Adorable Cat Door Topper

$14.99
$29.98
Style:  Angry Cat
Size:  M--8inch
Quantity
Payments Via PayPal®, Debit and CreditCard
Worldwide Express Shipping Available
Guaranteed 30 Days Return and Exchange
SSL Certificates For 100% Security
Description

🤣Who made the kitty cat mad? It doesn't look happy and has a angry stare.

🐱Enhance your home's charm and add a touch of whimsy with this adorable Cat Door Topper. Can be placed on a door, shelf, fireplace mantel, or window sill.

🏠Make a striking impression on your guests and visitors with our Adorable Cat Door Topper. This door decor is a conversation starter, a symbol of your love for the cat, and a unique way to showcase your style.

📐REVERSIBLE - Both sides will be painted so they can be turned to hang on the other side of the door.You can move your decorations around to different door/window frames or even put on your mantle!

💖Its a visual treat, perfect for cat lovers and those seeking a touch of cozy charm. Order yours today and let this sweet feline become a cherished part of your home's personality.

🎁Enchant your guests and make your home unique with a Door Frame Decoration featuring the cat. Its incredible beauty and delicacy will turn your door into a true work of art. An amazing gift that will delight everyone who sees it.

Size:

  • M:
  • Curious Cat:8*5.1inch
  • Angry Cat:8*2.8inch
  • Peeking Cat:8*6.2inch
  • Two Cats:8*5.9inch
  • Knife & Cat:7*7inch
  • Sleeping Cat:8*4.7inch
  • L:
  • Curious Cat:11.8*7.8inch
  • Angry Cat:11.8*6inch
  • Peeking Cat:11.8*9.5inch
  • Two Cats:11.8*8.6inch
  • Knife & Cat:11.8*11.8inch
  • Sleeping Cat:11.8*7inch

Material:

  • Metal

Note:

  • The metal door topper needs iron nails to fix it.Be careful, the door frame may fall and injure someone.ackermanshop is not responsible for any injury. 
Track Your Order

You will automatically receive a shipping confirmation email once your order ships that contain your tracking number, then click the tracking number(YQF12345) you will be able to track your order in real time . The express system is constantly updated.So please ensure to use a valid and correct email address.

You also can track your order by Third-party integrated logistics tracking website https://www.17track.net/en

Any question or concern? Contact us via macguiregeg@gmail.com

FAQs

Do I need to have an account to order?

No, you can also place an order as a guest. However, if you have an account with us, you can receive details of our latest product releases and promotions!

What if I enter the wrong email address?

Please contact us so we can change your email address. We can also change your email address, name and address for you.Please note that your shipping address cannot be modified after the order has been processed or shipped.

Is there an exchange rate?

All of our transactions are based in US Dollars. If your credit card is based in another currency, your order total will be calculated in accordance with the daily exchange rate of the date your card issuer processes the transaction.

How do I change or cancel my order?

We reserve the right at any time after receipt of the order to accept or decline the order, or any portion thereof, in our sole discretion, even after the Customer receives an order confirmation or after the credit card has been authorized. If the credit card has already been authorized for the purchase and the order is canceled, we will issue a credit to the original method of payment.

When will my order arrive?

We take an average of 1 to 2 days to complete your order before shipping. Rest assured, we will make every effort to get your order to you as soon as possible! After the order is shipped, expect delivery time of 7 to 15 days, depending on your country or region. Please consider any holidays that may affect delivery times.

How do I track my order?

We will email your tracking information as soon as your order has shipped. View here

What should I do if an item is missing from my order?

Please contact us immediately with your order number and email address.

How will my order be shipped?

For shipping methods, please read our Shippings page.

If you still have any questions or concerns, you can contact us by email at macguiregeg@gmail.com

people are viewing this right now
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.