Mini:Customization Fields
  • β˜€οΈWelcome to Mini: Custom Fields
  • πŸ‘¨β€πŸ³Guide
  • πŸ‘€FAQ
  • πŸŽ₯Use Cases
  • πŸ”’Privacy Policy
  • Beginner's Guide
    • 1️⃣Create your first field
    • 2️⃣Enable the app on your theme [MANDATORY]
    • πŸ†˜SOS "Help Needed! I cannot see the field in my product page"
  • πŸ†˜SOS! I got "can't find variant" error
  • How to...
    • βœ…How to understand if the field works properly?
  • πŸ”ŽHow to find the custom fields in the order?
  • βš™οΈHow to set a conditional logic?
  • πŸ’°How to charge extra fee when a field is being utilized by customer?
  • πŸ•ΈοΈHow to hide add-on products from Shopify search?
  • 🌈How to change the placement of the fields?
  • βœ‰οΈHow to add fields to packing slip template?
  • πŸ›οΈHow to show custom fields on confirmation email to CUSTOMER?
  • πŸ‘·How to add fields on new order notification emails to STAFF?
  • 🚒How to add custom fields to fulfillment email notification?
  • ⬆️How to add custom fields to shipping update email notification?
  • πŸ“¦How to add custom fields to out for delivery email notification?
  • πŸ›¬How to add custom fields to delivered email notification?
  • 🎨How to use custom css section in the app?
  • πŸ–ΌοΈHow to write your more specific css on fields?
  • USE CASES
  • πŸ’―Creating multiple fields on the same product
  • πŸ“”Custom Notebook
  • πŸ’ΈExtra Charge via Add-On
  • Still need help!
    • πŸŸ₯Contact US!
  • Recommended Apps
    • Hey! Low Stock Counter
    • Mini: Restock & Waitlist
Powered by GitBook
On this page

How to add fields on new order notification emails to STAFF?

PreviousHow to show custom fields on confirmation email to CUSTOMER?NextHow to add custom fields to fulfillment email notification?

Last updated 11 days ago

  • Please go to Settings -> Notifications -> Staff Notifications

  • Select New Order

  • Click on the Edit code button to access the email template

Notifications -> Staff notifications

Simply place your cursor on email body and use the keyboard shortcut Ctrl + F (or Command + F on Mac) to activate the search function there. Please look for " line.variant.title "

Once you find "if" statement for line.variant.title, please find "endif" to ensure that this statement ends properly.

Right after that endif statement, please copy and paste this code snippet below.

Copy

{% for property in line.properties %}
            {% assign property_first_char = property.first | slice: 0 %}
            {% if property.last != blank and property_first_char != '_' %}
              <span class="line-item-description-line">
                {{ property.first }}: {{ property.last }}
              </span><br/>
            {% endif %}
            {% endfor %}

Here is how it may look like eventually.

New Order
Find line.variant.title
Final email template after the changes
πŸ‘·