Tag Archives: Custom Face Mask

1CustomFaceMask.com Launches with Design Your Own Custom Face Mask

With the pandemic forcing everyone to adapt to what is called the “new normal” it is inevitable that the United States and other countries will have to accept face masks as a much more common part of life than ever before.

Giving Back to Help in the Pandemic with Personalized Masks: 50% of Mask Profits to Pandemic Focused Charitable Donations

1CustomFaceMask.com has teamed up with MyStyle Platform to provide not only a fun way to personalize your own masks, but also to aid in the mission to give back to the charities that are helping out the most in the pandemic.  For this goal, they have committed to giving 50% of all profits to pandemic aid charities like Feeding America.

1CustomFaceMask.com Launches Custom Face Mask Designer Powered By MyStyle Platform

MyStyle is a great choice for a product like a custom face mask, because it has all the main ingredients a customer will want to use.  Background colors and graphics, custom images, uploaded images, and custom text.  1CustomFaceMask.com is live now with MyStyle enabling users to design their own custom face masks on the site in minutes with ease.

No More Boring Flimsy Masks!

Boring, single-color medical looking face masks may have been the first wave of masks in the US, but quickly they have become much more.  Now more than ever, the market is in high demand for not only face coverings to where to the store, etc, but also for these face coverings to be more fashionable as they become part of your everyday wardrobe.

Fashionable Mask Trends Around the World

Asian countries have already had these customs for years, mostly because of air pollution, but nevertheless have adapted and have shown interesting fashion trends in the face mask world.

Helping People Have Fun with Face Masks

We hope that not only will personalization enable the world to embrace custom face masks in to their own fashion in a way that encourages and makes social distancing and safety measures more fun to participate in.

Design Yours Now!

Ready to create your own face mask and help the cause at the same time?  Head on over to 1CustomFaceMask.com and create yours today!

CSS Tip: Show Your WooCommerce Product Thumbnails In The Cart on Desktop and Mobile

For some reason WooCommerce has decided the default styles for the cart thumbnails should be very tiny or completely gone all together.  This leaves you with just text in the cart, which isn’t always what you want. To show the images, you can add some CSS to your WP settings or theme CSS file to always show the product images in cart.

example image source: 
https://MPFusa.org/custom-face-masks/

While I’m sure (re: hope) they have great data to back up the removal of images in the cart, some products need to be seen the full way through for a customer to feel good about what they have in their cart being the right stuff. If you agree, then this code snippet is for you. (copy/paste)

CSS Code:

/** MyStyle: Show thumbnail in cart larger than default 32px **/
.woocommerce-cart table.cart img {
width: auto;
min-width: 32px;

max-width: 100px;
}
@media(max-width:768px) {
/** Show thumbnail row in cart on mobile **/
.woocommerce-page table.cart .product-thumbnail {
display: inline-block !important;
}
/** hide colon above thumbnail for mobile **/
.woocommerce-page table.cart .product-thumbnail:before {
display: none;
}
}

How to Apply This Code

  1. Log into your WP Admin
  2. Go to the Theme Customizer > Added CSS (or similar place where your theme or system lets you put some custom CSS)
  3. Paste the code above & Publish
  4. Clear/Purge your site cache, if you have one

Conversion 101:
Custom Products Should Always Have a Thumbnail in the Cart

This is especially true with custom products, where you may have a few custom designs in your cart with the same product title, and the only recognizable difference is what each design looks like. For this reason, almost every MyStyle enabled site should override the default WooCommerce or theme CSS to show the thumbnail of the user’s creations in the shopping cart. You can do this very easily with a quick CSS tweak.