Display both Pre-Order and Sale labels on an item.

@usdentalinc

Steps to add custom preoder label to all the products of a collection:

  1. Go to “Online Store” → “Themes”.
  2. Click action button from the current theme and select “Edit code”.
  3. Locate the file “card-product.liquid” and search class named “card__badge”.
  4. Add the below code
{%- if card_product.tags contains 'pre-order' and card_product.available -%}
    
{%- endif -%}

hopefully you will get that what you need.