Issue With Migration to Shopify Order Printer

Shopify is forcing us to migrate to their new version of Shopify Order Printer from Order Printer (legacy), which we are currently using. I followed the steps to migrate our shipping template over to the new app with our existing code, however the template did not transfer over properly. It is missing a bunch of information such as shipping method, date, order number, ship to address. It also changed the font type and size. Not sure why this happened/how to fix it.

3 Likes

If you click on the old Order Printer (legacy) and look for the link in the note at the top (instructions in this guide) and follow the instructions in there all the information you are “missing” will come back.

Most of the stuff mentioned just needs order. put at the start ie the order number command order_name becomes order.order_name

The address one’s are the same, shipping_address.city becomes order.shipping_address.city

Hello @DamGood ,

Have you contacted Shopify support regarding that?

My team will be glad to help you.
Please, get in touch if you need any assistance.

Best regards,
Anastasia

Hi @DamGood ,

Using Shopify Order Printer may have some limitations. In this case, you might consider using a third-party app for printing and downloading documents. With these plugins, you can sync orders from Shopify, customize, and choose to display each element as you want, such as shipping method, date, order number, and ship-to address. There might be a small charge, around $6 per month, for downloading unlimited orders and accessing advanced features. If you are just starting or your business is still small, a free plan may work fine for you. If you’re interested, you can check out our invoice app: https://bit.ly/FordeerInvoiceGenerator

1 Like

Hello,

I followed the “instructions in this guide” and it messed up my template
even more. I replaced all of the relevant variables and it fixed 0 problems
that I was having and added more – now, in addition to those problems, the
line item descriptions and images are not showing up. I am a bit frustrated
as I am not person who is comfortable with code, and being a small business
(2 people, neither of which are comfortable with code), this is a big ask
– to make us go through and spend time fixing a template that originally
had no problems because of an internal change that Shopify wants to do. I
am spending a lot of time trying to fix this and am only going backwards.
How can you help me? Can we set up a meeting to screen share? This is not a
place where I can keep dumping time into as we have a lot of things on our
plate already.

I hope you can understand and I look forward to hearing how we can work
together in a more efficient manner.

Yes and they told me they couldn’t help me and that I needed to post my
question to the community.

1 Like

As I’m at work I shouldn’t even be looking at these but if you want to paste your template code into a reply here I can take alook at it for you and see what I can fix.

That is very nice of you, thanks!

Here is the code:

{% assign primary_font = “Muli”%}
{% assign primary_font_color = “#000000” %}
{% assign primary_font_size = “12px”%}
{% assign secondary_font = “Muli”%}
{% assign secondary_font_color = “#333333” %}
{% assign theme_color = “#dddddd”%}

/* ### BASE - PAGE SIZING AND MARGIN SETUP NORMALIZATION ACROSS BROWSERS ### */ @Page { margin: 12mm !important; margin-top: 12mm !important; margin-right: 12mm !important; margin-bottom: 12mm !important; margin-left: 12mm !important; } @media print { .safari { padding-top: 15px; box-sizing: border-box; } .printer-preview-content .printer-preview-content { padding-left: 15px; padding-right: 15px; box-sizing: border-box; } } @media screen { .printer-preview-content { padding: 18px 0; min-height: 800px; /* background-image: url([http://basehold.it/i/18](http://basehold.it/i/18)) */ } .printer-preview-content .printer-preview-content { margin-right: auto; margin-left: auto; max-width: 680px; } } @media screen,print { /* ### BASE - TYPOGRAPHY AND REMOVAL OF STANDARD SHOPIFY STYLING ### */ .printer-preview-content .t54454 * { color: {{ secondary_font_color }}; font-family: '{{ primary_font }}'; font-size: {{ primary_font_size }}; font-weight: 400; line-height: 18px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; margin: 0 0 0 0; padding: 0 0 0 0; -webkit-print-color-adjust: exact; overflow: visible !important; } .printer-preview-content .t54454 h1 { font-size: 28px; line-height: 36px; } .printer-preview-content .t54454 h2 { font-size: 24px; line-height: 36px; } .printer-preview-content .t54454 h3 { font-size: 14px; line-height: 18px; } .printer-preview-content .t54454 h1, .printer-preview-content .t54454 h2, .printer-preview-content .t54454 h3 { margin-bottom: 18px; } .printer-preview-content .t54454 a, .printer-preview-content .t54454 a * { text-decoration: none !important; } .printer-preview-content .t54454 b, .printer-preview-content .t54454 b * { font-weight: bold; } .printer-preview-content .t54454 .text-right { text-align: right; } .printer-preview-content .t54454 .text-center { text-align: center; } .printer-preview-content .t54454 .no-wrap { white-space: nowrap; } /* ### BASE - GRID AND RE-USABLE LAYOUT COMPONENTS ### */ .printer-preview-content .t54454 .row { width: 100%; display: block; clear: both; } .printer-preview-content .t54454 .row:after { content: ""; display: table; clear: both; } .printer-preview-content .t54454 .col-xs-1, .printer-preview-content .t54454 .col-xs-2, .printer-preview-content .t54454 .col-xs-3, .printer-preview-content .t54454 .col-xs-4, .printer-preview-content .t54454 .col-xs-5, .printer-preview-content .t54454 .col-xs-6, .printer-preview-content .t54454 .col-xs-7, .printer-preview-content .t54454 .col-xs-8, .printer-preview-content .t54454 .col-xs-9, .printer-preview-content .t54454 .col-xs-10, .printer-preview-content .t54454 .col-xs-11, .printer-preview-content .t54454 .col-xs-12 { float: left; min-height: 1px; margin-bottom: 36px; } .printer-preview-content .t54454 .col-xs-12 { width: 100%; } .printer-preview-content .t54454 .col-xs-11 { width: 91.66666667%; } .printer-preview-content .t54454 .col-xs-10 { width: 83.33333333%; } .printer-preview-content .t54454 .col-xs-9 { width: 75%; } .printer-preview-content .t54454 .col-xs-8 { width: 66.66666667%; } .printer-preview-content .t54454 .col-xs-7 { width: 58.33333333%; } .printer-preview-content .t54454 .col-xs-6 { width: 50%; } .printer-preview-content .t54454 .col-xs-5 { width: 41.66666667%; } .printer-preview-content .t54454 .col-xs-4 { width: 33.33333333%; } .printer-preview-content .t54454 .col-xs-3 { width: 25%; } .printer-preview-content .t54454 .col-xs-2 { width: 16.66666667%; } .printer-preview-content .t54454 .col-xs-1 { width: 8.33333333%; } .printer-preview-content .t54454 .col-no-margin { margin-bottom: 0 !important; } .printer-preview-content .t54454 .clear-fix::after { content: ""; clear: both; display: table; } .printer-preview-content .t54454 .half-margin-top { margin-top: 9px !important; } .printer-preview-content .t54454 .half-margin-bottom { margin-bottom: 9px !important; } .printer-preview-content .t54454 .margin-bottom { margin-bottom: 18px !important; margin-top: 1px; } .printer-preview-content .t54454 .margin-top { margin-top: 18px !important; } .printer-preview-content .t54454 .double-margin-top { margin-top: 36px !important; } .printer-preview-content .t54454 .double-margin-bottom { margin-bottom: 36px !important; } .printer-preview-content .t54454 .strikethrough { text-decoration: line-through !important; } .printer-preview-content .t54454 .break { word-break: break-all !important; } /* ### BASE - TABLE STYLING ### */ .printer-preview-content .t54454 table, .printer-preview-content .t54454 .table { width: 100%; max-width: 100%; background-color: transparent; border-collapse: collapse; } .printer-preview-content .t54454 table thead { display: table-row-group; } .printer-preview-content .t54454 table tbody tr { page-break-inside:avoid !important; page-break-after:auto !important; } .printer-preview-content .t54454 table tbody tr td { page-break-inside:avoid !important; } .printer-preview-content .t54454 th { white-space: nowrap; text-align: left; vertical-align: middle; border-top: 0; border-bottom: 0; } .printer-preview-content .t54454 td { vertical-align: middle; border-top: 0; border-bottom: 0; } .printer-preview-content .t54454 .order-table tbody > tr td { background-color: #FFFFFF; } .printer-preview-content .t54454 .pricing-table { position: relative; top: 1px; } .printer-preview-content .t54454 .pricing-table tbody > tr > td { background-color: #FFFFFF; } /* .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title { word-break: break-all; }*/ .printer-preview-content .t54454 th.order-table-qty { width: 10%; } .printer-preview-content .t54454 th.order-table-price { width: 10%; } .printer-preview-content .t54454 th.order-table-item-total, .printer-preview-content .t54454 th.order-table-reason { width: 17%; } .printer-preview-content .t54454 th.order-table-return-comments { width: 30%; } .printer-preview-content .t54454 .pricing-table-text { text-align: right; white-space: nowrap; } /* ### BASE - PRODUCT IMAGE SIZING TO RETAIN LINE HEIGHT RYTHM) ### */ .printer-preview-content .t54454 .product-image-wrapper { width: 108px; max-height: 108px; } .printer-preview-content .t54454 .product-image { padding: 0 4px; page-break-inside:avoid !important; max-width: 108px; } /* ### BASE - LISTS RESET ### */ .printer-preview-content .t54454 ul { list-style: none; } .printer-preview-content .t54454 li { color: {{ secondary_font_color }}; list-style: none; } /* ### BASE - LOGO ### */ .printer-preview-content .t54454 .logo-wrapper { display: inline-block; width: 100%; padding-bottom: 9px; } .printer-preview-content .t54454 .logo { float: left; padding-right: 15px; max-width: 31%; max-height: 76.88px; } /* ### BASE - BARCODE ### */ .printer-preview-content .t54454 .order-number-barcode, .printer-preview-content .t54454 .product-barcode { display: block; } /* ### BASE - ADDITONAL COMMON SHARED TYPOGRAPHY AND ALIGNMENT ### */ .printer-preview-content .t54454 .address { margin-right: 5%; } .printer-preview-content .t54454 .col-xs-8 .notes, .printer-preview-content .t54454 .col-xs-6 .notes { margin-right: 20%; } .printer-preview-content .t54454 .notes-title, .printer-preview-content .t54454 .return-codes { margin: 9px 0; } /* ### BASE - HORIZONTAL RULE MARKS ### */ .printer-preview-content .t54454 hr { background: {{ theme_color }}; border-top: 0; border: 0; height: 2px; width: 100%; margin-bottom: -2px; } } @media screen,print { /* ### DESIGN SPECIFIC - TYPOGRAPHY ### */ .printer-preview-content .t54454 h1 { font-family: '{{ secondary_font }}'; font-weight: 400; margin-bottom: 0px !important; color: {{ primary_font_color }}; } .printer-preview-content .t54454 h2 { font-family: '{{ secondary_font }}'; } .printer-preview-content .t54454 h3 { font-family: '{{ secondary_font }}'; color: {{ theme_color }}; } .printer-preview-content .t54454 .logo-wrapper { margin: 0 0; padding: 0 !important; } .printer-preview-content .t54454 .logo { margin: 0 0; padding: 0 !important; } /* ### DESIGN SPECIFIC - LOGO POSITIONING ### */ .printer-preview-content .t54454 .logo { float: none; display: block; margin: 0 auto; } /* ### DESIGN SPECIFIC - STORE DETAILS ### */ .printer-preview-content .t54454 .shop-block { text-align: center; } .printer-preview-content .t54454 .shop-domain { font-weight: normal; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .shop-address-name { display: block; font-size: 16px; font-weight: 700; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .shop-address-block b { font-weight: 700; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - ORDER DETAILS ### */ .printer-preview-content .t54454 .order-details-title { display: inline-block; width: 40%; } .printer-preview-content .t54454 .order-details .order-details-date { display: none; } .printer-preview-content .t54454 .order-details li:first-of-type * { font-weight: 700; /* text-transform: uppercase; */ padding-bottom:9px; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .order-details li:not(:first-of-type) * { font-weight: normal; } /* ### DESIGN SPECIFIC - BILL TO AND SHIP TO ADDRESS ### */ .printer-preview-content .t54454 .address-title { font-weight: 700; /* text-transform: uppercase; */ padding-bottom:9px; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - TABLE HEADER ### */ .printer-preview-content .t54454 .order-table thead tr th { padding-left: 0px; padding-right: 0px; padding-top: 9px; padding-bottom:4px; font-weight: 700; vertical-align: bottom; color: {{ primary_font_color }}; border-bottom: 2px solid {{ theme_color }}; /* text-transform: uppercase; */ } /* ### DESIGN SPECIFIC - TABLE BODY (SHARED) ### */ .printer-preview-content .t54454 .order-table tbody tr td, .printer-preview-content .t54454 .pricing-table tbody tr td { padding-left: 0px; padding-right: 0px; border-top: 0; padding-top: 6px; padding-bottom:5px; border-bottom: 1px solid #f3f3f3; } /* ### DESIGN SPECIFIC - ORDER TABLE SPECIFIC ### */ .printer-preview-content .t54454 .order-table thead tr th.order-table-title { /* text-transform: uppercase; */ } .printer-preview-content .t54454 th.order-table-qty, .printer-preview-content .t54454 th.order-table-price, .printer-preview-content .t54454 th.order-table-item-total { width: 14%; } .printer-preview-content .t54454 th.order-table-item-total, .printer-preview-content .t54454 th.order-table-reason { width: 20%; } .printer-preview-content .t54454 th.order-table-return-comments { width: 30%; } .printer-preview-content .t54454 .order-table tbody > tr > td.line-item-description { color: {{ primary_font_color }}; font-weight: 700; } .printer-preview-content .t54454 .order-table tbody > tr > td:last-of-type, .printer-preview-content .t54454 .order-table tbody > tr > td:last-of-type * { } .printer-preview-content .t54454 .order-table .product-image-wrapper { padding-right: 8px; } .printer-preview-content .t54454 .order-table tbody > tr > td.line-item-description span.line-item-refund { display: inline-block; padding: 2px 8px; margin-top: 4px; background-color: #FFEA8A; border-radius: 18px; } /* ### DESIGN SPECIFIC - PRICING TABLE SPECIFIC ### */ .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title, .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title span { /* text-transform: uppercase; */ } .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-text, .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-text * { } .printer-preview-content .t54454 .pricing-table tbody > tr.pricing-table-total-row .pricing-table-title, .printer-preview-content .t54454 .pricing-table tbody > tr.pricing-table-total-row .pricing-table-text { color: {{ primary_font_color }}; font-weight: 700; border-bottom: 2px solid {{ theme_color }}; } /* ### DESIGN SPECIFIC - ORDER NOTES ### */ .printer-preview-content .t54454 .notes-title { font-weight: 700; /* text-transform: uppercase; */ color: {{ primary_font_color }}; } .printer-preview-content .t54454 .notes-text { margin-bottom: 18px; } /* ### DESIGN SPECIFIC - RETURN FORM REASON CODES ### */ .printer-preview-content .t54454 .return-codes b, .printer-preview-content .t54454 .return-code b * { margin-bottom: 18px; font-weight: 700; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - THANK YOU MESSAGE ### */ /* ### DESIGN SPECIFIC - GIFT MESSAGE ### */ .printer-preview-content .t54454 .gift-text { font-weight: 700; padding-top:18px; padding-bottom:18px; font-size: 13px; } .printer-preview-content .t54454 .gift-text * { font-weight: 700; font-size: 13px; } .printer-preview-content .t54454 .gift-text svg { padding-bottom:9px; } /* ### DESIGN SPECIFIC - TERMS AND CONDITIONS ### */ .printer-preview-content .t54454 .terms-text { font-size: 10px; } .printer-preview-content .t54454 .terms-text * { font-size: 10px; } /* ### DESIGN SPECIFIC - SOCIAL ICONS ### */ .printer-preview-content .t54454 .social-icons { display: inline; width: 18px; margin: 9px 2%; } }

Packing Slip

  • {{ date | date: "%B %d, %Y" }}
Bill to
    {% assign billing_address = billing_address | default: customer.default_address %} {% if billing_address and billing_address != blank %}
  • {{ billing_address.name }}
  • {% if billing_address.company != blank %}
  • {{ billing_address.company }}
  • {% endif %}
  • {{ billing_address.address1 }}
  • {% if billing_address.address2 != blank %}
  • {{ billing_address.address2 }}
  • {% endif %}
  • {{ billing_address.city }}, {% if billing_address.province_code != blank %}{{ billing_address.province_code }}{% else %}{{ billing_address.province }}{% endif %} {{ billing_address.zip | upcase }}
  • {% if shop.country != billing_address.country %}
  • {{ billing_address.country }}
  • {% endif %} {% elsif customer != blank %} {% if customer.name != blank %}
  • {{ customer.name }}
  • {% endif %} {% if customer.email != blank %}
  • {{ customer.email }}
  • {% endif %} {% endif %}
{% if shipping_address and shipping_address != "" and shipping_address != nil %}
Ship to
{% endif %}
    {% if shipping_address and shipping_address != blank %}
  • {{ shipping_address.name }}
  • {% if shipping_address.company != blank %}
  • {{ shipping_address.company }}
  • {% endif %}
  • {{ shipping_address.address1 }}
  • {% if shipping_address.address2 != blank %}
  • {{ shipping_address.address2 }}
  • {% endif %}
  • {{ shipping_address.city }}, {% if shipping_address.province_code != blank %}{{ shipping_address.province_code }}{% else %}{{ shipping_address.province }}{% endif %} {{ shipping_address.zip | upcase }}
  • {% if shop.country != shipping_address.country %}
  • {{ shipping_address.country }}
  • {% endif %} {% endif %}
  • Order {{ order_name }}
  • Order Date {{ created_at | date: "%B %d, %Y" }}
  • {% if shipping_method.title != blank %}
  • Shipping {{ shipping_method.title }}
  • {% endif %}
{% assign line_items = line_items | sort: "name" %} {% assign hidden_variant_ids = "" %} {% for line_item in line_items %} {% if line_item.properties._boldVariantIds %} {% assign hidden_variant_ids = hidden_variant_ids | append: ',' %} {% assign hidden_variant_ids = hidden_variant_ids | append: line_item.properties._boldVariantIds %} {% endif %} {% endfor %} {% assign hidden_variant_ids = hidden_variant_ids | split: ',' %} {% for line_item in line_items %} {% if line_item.quantity < 1 or line_item.title == "Tip" or line_item.title == "Tips" %}{% continue %}{% endif %} {% if hidden_variant_ids contains line_item.variant_id %}{% continue %}{% endif %} {% assign adjusted_item_price = line_item.price %} {% assign adjusted_line_price = line_item.price | times: line_item.quantity %} {% for line_item2 in line_items %} {% if line_item.properties._boldVariantIds contains line_item2.variant_id %} {% assign adjusted_item_price = adjusted_item_price | plus: line_item2.price %} {% assign adjusted_line_option_price = line_item2.price | times: line_item.quantity %} {% assign adjusted_line_price = adjusted_line_price | plus: adjusted_line_option_price %} {% endif %} {% endfor %} {% endfor %}
Item Description Qty
{% if line_item.image != blank %}{% endif %}

{{ line_item.title | replace: " - Default Title", "" }}

{% if line_item.sku != blank %}

{{ line_item.sku }}

{% endif %} {% for p in line_item.properties %} {% assign p_internal = p.first | slice: 0 %} {% unless p.first contains "builder_id" or p.first contains "builder_info" or p.first contains "master_builder" or p_internal == "_" or p.last == "" or p.last == blank %} {% if p.last contains "cdn.shopify.com" or p.last contains "/uploads/" or p.last contains ".png?" or p.last contains ".jpg?" or p.last contains "//uploadery.s3" %}

{{ p.first }}:

{{ p.first }} {% else %}

{{ p.first }}: {{ p.last | newline_to_br }}

{% endif %} {% endunless %} {% endfor %} {% assign refunded_quantity = 0 %} {% for refund in refunds %} {% for refund_line_item in refund.refund_line_items %} {% if line_item.id == refund_line_item.line_item_id %} {% assign refunded_quantity = refunded_quantity | plus: refund_line_item.quantity %} {% endif %} {% endfor %} {% endfor %} {% if refunded_quantity > 0 %} Refunded Ă— {{ refunded_quantity }} {% endif %}
Ă— {{ line_item.quantity }}
{% if note != blank %}
Notes
{% endif %}
{{ note | newline_to_br }}

{% if customer.orders_count <= 1 %}

Thank you very much for your order!

{% else %} Thank you very much for your re-order! {% endif %}


ATTENTION: Since Dam Good English Muffins contain no artificial preservatives, to maintain freshness, we recommend that you store them in the freezer, where they will last up to 12 months, or in the fridge, where they will last up to one week.

Please see the back of our package for serving instructions.



Happy toasting,
Denise and Olivia Weale, mother daugher co-founders


Dam Good™ English Muffins

Peekskill, NY 10566

customercare@damgoodenglishmuffins.com | (914) 293-7190

[www.damgoodenglishmuffins.com](http://www.damgoodenglishmuffins.com) | @damgoodenglishmuffins


Hello @DamGood ,

You need a Shopify expert to take a look at your template and the issues you are facing.

Thanks,
Anastasia

Yes, I do, however when I chatted with one they told me they couldn’t help
me and directed me to posting in the community.

Copy this into a new test template and see if I’ve missed anything, but that appears to be everything that wasn’t working (not having seen an invoice before :slightly_smiling_face: )

{% assign primary_font = “Muli”%}
{% assign primary_font_color = “#000000” %}
{% assign primary_font_size = “12px”%}
{% assign secondary_font = “Muli”%}
{% assign secondary_font_color = “#333333” %}
{% assign theme_color = “#dddddd”%}

/* ### BASE - PAGE SIZING AND MARGIN SETUP NORMALIZATION ACROSS BROWSERS ### */ @Page { margin: 12mm !important; margin-top: 12mm !important; margin-right: 12mm !important; margin-bottom: 12mm !important; margin-left: 12mm !important; } @media print { .safari { padding-top: 15px; box-sizing: border-box; } .printer-preview-content .printer-preview-content { padding-left: 15px; padding-right: 15px; box-sizing: border-box; } } @media screen { .printer-preview-content { padding: 18px 0; min-height: 800px; /* background-image: url([http://basehold.it/i/18](http://basehold.it/i/18)) */ } .printer-preview-content .printer-preview-content { margin-right: auto; margin-left: auto; max-width: 680px; } } @media screen,print { /* ### BASE - TYPOGRAPHY AND REMOVAL OF STANDARD SHOPIFY STYLING ### */ .printer-preview-content .t54454 * { color: {{ secondary_font_color }}; font-family: '{{ primary_font }}'; font-size: {{ primary_font_size }}; font-weight: 400; line-height: 18px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; margin: 0 0 0 0; padding: 0 0 0 0; -webkit-print-color-adjust: exact; overflow: visible !important; } .printer-preview-content .t54454 h1 { font-size: 28px; line-height: 36px; } .printer-preview-content .t54454 h2 { font-size: 24px; line-height: 36px; } .printer-preview-content .t54454 h3 { font-size: 14px; line-height: 18px; } .printer-preview-content .t54454 h1, .printer-preview-content .t54454 h2, .printer-preview-content .t54454 h3 { margin-bottom: 18px; } .printer-preview-content .t54454 a, .printer-preview-content .t54454 a * { text-decoration: none !important; } .printer-preview-content .t54454 b, .printer-preview-content .t54454 b * { font-weight: bold; } .printer-preview-content .t54454 .text-right { text-align: right; } .printer-preview-content .t54454 .text-center { text-align: center; } .printer-preview-content .t54454 .no-wrap { white-space: nowrap; } /* ### BASE - GRID AND RE-USABLE LAYOUT COMPONENTS ### */ .printer-preview-content .t54454 .row { width: 100%; display: block; clear: both; } .printer-preview-content .t54454 .row:after { content: ""; display: table; clear: both; } .printer-preview-content .t54454 .col-xs-1, .printer-preview-content .t54454 .col-xs-2, .printer-preview-content .t54454 .col-xs-3, .printer-preview-content .t54454 .col-xs-4, .printer-preview-content .t54454 .col-xs-5, .printer-preview-content .t54454 .col-xs-6, .printer-preview-content .t54454 .col-xs-7, .printer-preview-content .t54454 .col-xs-8, .printer-preview-content .t54454 .col-xs-9, .printer-preview-content .t54454 .col-xs-10, .printer-preview-content .t54454 .col-xs-11, .printer-preview-content .t54454 .col-xs-12 { float: left; min-height: 1px; margin-bottom: 36px; } .printer-preview-content .t54454 .col-xs-12 { width: 100%; } .printer-preview-content .t54454 .col-xs-11 { width: 91.66666667%; } .printer-preview-content .t54454 .col-xs-10 { width: 83.33333333%; } .printer-preview-content .t54454 .col-xs-9 { width: 75%; } .printer-preview-content .t54454 .col-xs-8 { width: 66.66666667%; } .printer-preview-content .t54454 .col-xs-7 { width: 58.33333333%; } .printer-preview-content .t54454 .col-xs-6 { width: 50%; } .printer-preview-content .t54454 .col-xs-5 { width: 41.66666667%; } .printer-preview-content .t54454 .col-xs-4 { width: 33.33333333%; } .printer-preview-content .t54454 .col-xs-3 { width: 25%; } .printer-preview-content .t54454 .col-xs-2 { width: 16.66666667%; } .printer-preview-content .t54454 .col-xs-1 { width: 8.33333333%; } .printer-preview-content .t54454 .col-no-margin { margin-bottom: 0 !important; } .printer-preview-content .t54454 .clear-fix::after { content: ""; clear: both; display: table; } .printer-preview-content .t54454 .half-margin-top { margin-top: 9px !important; } .printer-preview-content .t54454 .half-margin-bottom { margin-bottom: 9px !important; } .printer-preview-content .t54454 .margin-bottom { margin-bottom: 18px !important; margin-top: 1px; } .printer-preview-content .t54454 .margin-top { margin-top: 18px !important; } .printer-preview-content .t54454 .double-margin-top { margin-top: 36px !important; } .printer-preview-content .t54454 .double-margin-bottom { margin-bottom: 36px !important; } .printer-preview-content .t54454 .strikethrough { text-decoration: line-through !important; } .printer-preview-content .t54454 .break { word-break: break-all !important; } /* ### BASE - TABLE STYLING ### */ .printer-preview-content .t54454 table, .printer-preview-content .t54454 .table { width: 100%; max-width: 100%; background-color: transparent; border-collapse: collapse; } .printer-preview-content .t54454 table thead { display: table-row-group; } .printer-preview-content .t54454 table tbody tr { page-break-inside:avoid !important; page-break-after:auto !important; } .printer-preview-content .t54454 table tbody tr td { page-break-inside:avoid !important; } .printer-preview-content .t54454 th { white-space: nowrap; text-align: left; vertical-align: middle; border-top: 0; border-bottom: 0; } .printer-preview-content .t54454 td { vertical-align: middle; border-top: 0; border-bottom: 0; } .printer-preview-content .t54454 .order-table tbody > tr td { background-color: #FFFFFF; } .printer-preview-content .t54454 .pricing-table { position: relative; top: 1px; } .printer-preview-content .t54454 .pricing-table tbody > tr > td { background-color: #FFFFFF; } /* .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title { word-break: break-all; }*/ .printer-preview-content .t54454 th.order-table-qty { width: 10%; } .printer-preview-content .t54454 th.order-table-price { width: 10%; } .printer-preview-content .t54454 th.order-table-item-total, .printer-preview-content .t54454 th.order-table-reason { width: 17%; } .printer-preview-content .t54454 th.order-table-return-comments { width: 30%; } .printer-preview-content .t54454 .pricing-table-text { text-align: right; white-space: nowrap; } /* ### BASE - PRODUCT IMAGE SIZING TO RETAIN LINE HEIGHT RYTHM) ### */ .printer-preview-content .t54454 .product-image-wrapper { width: 108px; max-height: 108px; } .printer-preview-content .t54454 .product-image { padding: 0 4px; page-break-inside:avoid !important; max-width: 108px; } /* ### BASE - LISTS RESET ### */ .printer-preview-content .t54454 ul { list-style: none; } .printer-preview-content .t54454 li { color: {{ secondary_font_color }}; list-style: none; } /* ### BASE - LOGO ### */ .printer-preview-content .t54454 .logo-wrapper { display: inline-block; width: 100%; padding-bottom: 9px; } .printer-preview-content .t54454 .logo { float: left; padding-right: 15px; max-width: 31%; max-height: 76.88px; } /* ### BASE - BARCODE ### */ .printer-preview-content .t54454 .order-number-barcode, .printer-preview-content .t54454 .product-barcode { display: block; } /* ### BASE - ADDITONAL COMMON SHARED TYPOGRAPHY AND ALIGNMENT ### */ .printer-preview-content .t54454 .address { margin-right: 5%; } .printer-preview-content .t54454 .col-xs-8 .notes, .printer-preview-content .t54454 .col-xs-6 .notes { margin-right: 20%; } .printer-preview-content .t54454 .notes-title, .printer-preview-content .t54454 .return-codes { margin: 9px 0; } /* ### BASE - HORIZONTAL RULE MARKS ### */ .printer-preview-content .t54454 hr { background: {{ theme_color }}; border-top: 0; border: 0; height: 2px; width: 100%; margin-bottom: -2px; } } @media screen,print { /* ### DESIGN SPECIFIC - TYPOGRAPHY ### */ .printer-preview-content .t54454 h1 { font-family: '{{ secondary_font }}'; font-weight: 400; margin-bottom: 0px !important; color: {{ primary_font_color }}; } .printer-preview-content .t54454 h2 { font-family: '{{ secondary_font }}'; } .printer-preview-content .t54454 h3 { font-family: '{{ secondary_font }}'; color: {{ theme_color }}; } .printer-preview-content .t54454 .logo-wrapper { margin: 0 0; padding: 0 !important; } .printer-preview-content .t54454 .logo { margin: 0 0; padding: 0 !important; } /* ### DESIGN SPECIFIC - LOGO POSITIONING ### */ .printer-preview-content .t54454 .logo { float: none; display: block; margin: 0 auto; } /* ### DESIGN SPECIFIC - STORE DETAILS ### */ .printer-preview-content .t54454 .shop-block { text-align: center; } .printer-preview-content .t54454 .shop-domain { font-weight: normal; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .shop-address-name { display: block; font-size: 16px; font-weight: 700; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .shop-address-block b { font-weight: 700; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - ORDER DETAILS ### */ .printer-preview-content .t54454 .order-details-title { display: inline-block; width: 40%; } .printer-preview-content .t54454 .order-details .order-details-date { display: none; } .printer-preview-content .t54454 .order-details li:first-of-type * { font-weight: 700; /* text-transform: uppercase; */ padding-bottom:9px; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .order-details li:not(:first-of-type) * { font-weight: normal; } /* ### DESIGN SPECIFIC - BILL TO AND SHIP TO ADDRESS ### */ .printer-preview-content .t54454 .address-title { font-weight: 700; /* text-transform: uppercase; */ padding-bottom:9px; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - TABLE HEADER ### */ .printer-preview-content .t54454 .order-table thead tr th { padding-left: 0px; padding-right: 0px; padding-top: 9px; padding-bottom:4px; font-weight: 700; vertical-align: bottom; color: {{ primary_font_color }}; border-bottom: 2px solid {{ theme_color }}; /* text-transform: uppercase; */ } /* ### DESIGN SPECIFIC - TABLE BODY (SHARED) ### */ .printer-preview-content .t54454 .order-table tbody tr td, .printer-preview-content .t54454 .pricing-table tbody tr td { padding-left: 0px; padding-right: 0px; border-top: 0; padding-top: 6px; padding-bottom:5px; border-bottom: 1px solid #f3f3f3; } /* ### DESIGN SPECIFIC - ORDER TABLE SPECIFIC ### */ .printer-preview-content .t54454 .order-table thead tr th.order-table-title { /* text-transform: uppercase; */ } .printer-preview-content .t54454 th.order-table-qty, .printer-preview-content .t54454 th.order-table-price, .printer-preview-content .t54454 th.order-table-item-total { width: 14%; } .printer-preview-content .t54454 th.order-table-item-total, .printer-preview-content .t54454 th.order-table-reason { width: 20%; } .printer-preview-content .t54454 th.order-table-return-comments { width: 30%; } .printer-preview-content .t54454 .order-table tbody > tr > td.line-item-description { color: {{ primary_font_color }}; font-weight: 700; } .printer-preview-content .t54454 .order-table tbody > tr > td:last-of-type, .printer-preview-content .t54454 .order-table tbody > tr > td:last-of-type * { } .printer-preview-content .t54454 .order-table .product-image-wrapper { padding-right: 8px; } .printer-preview-content .t54454 .order-table tbody > tr > td.line-item-description span.line-item-refund { display: inline-block; padding: 2px 8px; margin-top: 4px; background-color: #FFEA8A; border-radius: 18px; } /* ### DESIGN SPECIFIC - PRICING TABLE SPECIFIC ### */ .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title, .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title span { /* text-transform: uppercase; */ } .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-text, .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-text * { } .printer-preview-content .t54454 .pricing-table tbody > tr.pricing-table-total-row .pricing-table-title, .printer-preview-content .t54454 .pricing-table tbody > tr.pricing-table-total-row .pricing-table-text { color: {{ primary_font_color }}; font-weight: 700; border-bottom: 2px solid {{ theme_color }}; } /* ### DESIGN SPECIFIC - ORDER NOTES ### */ .printer-preview-content .t54454 .notes-title { font-weight: 700; /* text-transform: uppercase; */ color: {{ primary_font_color }}; } .printer-preview-content .t54454 .notes-text { margin-bottom: 18px; } /* ### DESIGN SPECIFIC - RETURN FORM REASON CODES ### */ .printer-preview-content .t54454 .return-codes b, .printer-preview-content .t54454 .return-code b * { margin-bottom: 18px; font-weight: 700; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - THANK YOU MESSAGE ### */ /* ### DESIGN SPECIFIC - GIFT MESSAGE ### */ .printer-preview-content .t54454 .gift-text { font-weight: 700; padding-top:18px; padding-bottom:18px; font-size: 13px; } .printer-preview-content .t54454 .gift-text * { font-weight: 700; font-size: 13px; } .printer-preview-content .t54454 .gift-text svg { padding-bottom:9px; } /* ### DESIGN SPECIFIC - TERMS AND CONDITIONS ### */ .printer-preview-content .t54454 .terms-text { font-size: 10px; } .printer-preview-content .t54454 .terms-text * { font-size: 10px; } /* ### DESIGN SPECIFIC - SOCIAL ICONS ### */ .printer-preview-content .t54454 .social-icons { display: inline; width: 18px; margin: 9px 2%; } }

Packing Slip

  • {{ date | date: "%B %d, %Y" }}
Bill to
    {% assign order.billing_address = order.billing_address | default: customer.default_address %} {% if order.billing_address and order.billing_address != blank %}
  • {{ order.billing_address.name }}
  • {% if order.billing_address.company != blank %}
  • {{ order.billing_address.company }}
  • {% endif %}
  • {{ order.billing_address.address1 }}
  • {% if order.billing_address.address2 != blank %}
  • {{ order.billing_address.address2 }}
  • {% endif %}
  • {{ order.billing_address.city }}, {% if order.billing_address.province_code != blank %}{{ order.billing_address.province_code }}{% else %}{{ order.billing_address.province }}{% endif %} {{ order.billing_address.zip | upcase }}
  • {% if shop.country != order.billing_address.country %}
  • {{ order.billing_address.country }}
  • {% endif %} {% elsif customer != blank %} {% if customer.name != blank %}
  • {{ customer.name }}
  • {% endif %} {% if customer.email != blank %}
  • {{ customer.email }}
  • {% endif %} {% endif %}
{% if order.shipping_address != "" and order.shipping_address != nil %}
Ship to
{% endif %}
    {% if order.shipping_address and order.shipping_address != blank %}
  • {{ order.shipping_address.name }}
  • {% if order.shipping_address.company != blank %}
  • {{ order.shipping_address.company }}
  • {% endif %}
  • {{ order.shipping_address.address1 }}
  • {% if order.shipping_address.address2 != blank %}
  • {{ order.shipping_address.address2 }}
  • {% endif %}
  • {{ order.shipping_address.city }}, {% if order.shipping_address.province_code != blank %}{{ order.shipping_address.province_code }}{% else %}{{ order.shipping_address.province }}{% endif %} {{ order.shipping_address.zip | upcase }}
  • {% if shop.country != order.shipping_address.country %}
  • {{ order.shipping_address.country }}
  • {% endif %} {% endif %}
  • Order {{ order.order_name }}
  • Order Date {{ order.created_at | date: "%B %d, %Y" }}
  • {% if order.shipping_method.title != blank %}
  • Shipping {{ order.shipping_method.title }}
  • {% endif %}
{% assign line_items = line_items | sort: "name" %} {% assign hidden_variant_ids = "" %} {% for line_item in line_items %} {% if line_item.properties._boldVariantIds %} {% assign hidden_variant_ids = hidden_variant_ids | append: ',' %} {% assign hidden_variant_ids = hidden_variant_ids | append: line_item.properties._boldVariantIds %} {% endif %} {% endfor %} {% assign hidden_variant_ids = hidden_variant_ids | split: ',' %} {% for line_item in line_items %} {% if line_item.quantity < 1 or line_item.title == "Tip" or line_item.title == "Tips" %}{% continue %}{% endif %} {% if hidden_variant_ids contains line_item.variant_id %}{% continue %}{% endif %} {% assign adjusted_item_price = line_item.price %} {% assign adjusted_line_price = line_item.price | times: line_item.quantity %} {% for line_item2 in line_items %} {% if line_item.properties._boldVariantIds contains line_item2.variant_id %} {% assign adjusted_item_price = adjusted_item_price | plus: line_item2.price %} {% assign adjusted_line_option_price = line_item2.price | times: line_item.quantity %} {% assign adjusted_line_price = adjusted_line_price | plus: adjusted_line_option_price %} {% endif %} {% endfor %} {% endfor %}
Item Description Qty
{% if line_item.image != blank %}{% endif %}

{{ line_item.title | replace: " - Default Title", "" }}

{% if line_item.sku != blank %}

{{ line_item.sku }}

{% endif %} {% for p in line_item.properties %} {% assign p_internal = p.first | slice: 0 %} {% unless p.first contains "builder_id" or p.first contains "builder_info" or p.first contains "master_builder" or p_internal == "_" or p.last == "" or p.last == blank %} {% if p.last contains "cdn.shopify.com" or p.last contains "/uploads/" or p.last contains ".png?" or p.last contains ".jpg?" or p.last contains "//uploadery.s3" %}

{{ p.first }}:

{{ p.first }} {% else %}

{{ p.first }}: {{ p.last | newline_to_br }}

{% endif %} {% endunless %} {% endfor %} {% assign refunded_quantity = 0 %} {% for refund in refunds %} {% for refund_line_item in refund.refund_line_items %} {% if line_item.id == refund_line_item.line_item_id %} {% assign refunded_quantity = refunded_quantity | plus: refund_line_item.quantity %} {% endif %} {% endfor %} {% endfor %} {% if refunded_quantity > 0 %} Refunded Ă— {{ refunded_quantity }} {% endif %}
Ă— {{ line_item.quantity }}
{% if note != blank %}
Notes
{% endif %}
{{ note | newline_to_br }}

{% if customer.orders_count <= 1 %}

Thank you very much for your order!

{% else %} Thank you very much for your re-order! {% endif %}


ATTENTION: Since Dam Good English Muffins contain no artificial preservatives, to maintain freshness, we recommend that you store them in the freezer, where they will last up to 12 months, or in the fridge, where they will last up to one week.

Please see the back of our package for serving instructions.



Happy toasting,
Denise and Olivia Weale, mother daugher co-founders


Dam Good™ English Muffins

Peekskill, NY 10566

customercare@damgoodenglishmuffins.com | (914) 293-7190

[www.damgoodenglishmuffins.com](http://www.damgoodenglishmuffins.com) | @damgoodenglishmuffins


Have fixed the obvious stuff that I could see was missing but realised that having never saw one of your invoices before I didn’t have a clue what it should look like :slightly_smiling_face: If you paste the below code into a test template and see if I’ve missed anything:-

{% assign primary_font = “Muli”%}
{% assign primary_font_color = “#000000” %}
{% assign primary_font_size = “12px”%}
{% assign secondary_font = “Muli”%}
{% assign secondary_font_color = “#333333” %}
{% assign theme_color = “#dddddd”%}

/* ### BASE - PAGE SIZING AND MARGIN SETUP NORMALIZATION ACROSS BROWSERS ### */ @Page { margin: 12mm !important; margin-top: 12mm !important; margin-right: 12mm !important; margin-bottom: 12mm !important; margin-left: 12mm !important; } @media print { .safari { padding-top: 15px; box-sizing: border-box; } .printer-preview-content .printer-preview-content { padding-left: 15px; padding-right: 15px; box-sizing: border-box; } } @media screen { .printer-preview-content { padding: 18px 0; min-height: 800px; /* background-image: url([http://basehold.it/i/18](http://basehold.it/i/18)) */ } .printer-preview-content .printer-preview-content { margin-right: auto; margin-left: auto; max-width: 680px; } } @media screen,print { /* ### BASE - TYPOGRAPHY AND REMOVAL OF STANDARD SHOPIFY STYLING ### */ .printer-preview-content .t54454 * { color: {{ secondary_font_color }}; font-family: '{{ primary_font }}'; font-size: {{ primary_font_size }}; font-weight: 400; line-height: 18px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; margin: 0 0 0 0; padding: 0 0 0 0; -webkit-print-color-adjust: exact; overflow: visible !important; } .printer-preview-content .t54454 h1 { font-size: 28px; line-height: 36px; } .printer-preview-content .t54454 h2 { font-size: 24px; line-height: 36px; } .printer-preview-content .t54454 h3 { font-size: 14px; line-height: 18px; } .printer-preview-content .t54454 h1, .printer-preview-content .t54454 h2, .printer-preview-content .t54454 h3 { margin-bottom: 18px; } .printer-preview-content .t54454 a, .printer-preview-content .t54454 a * { text-decoration: none !important; } .printer-preview-content .t54454 b, .printer-preview-content .t54454 b * { font-weight: bold; } .printer-preview-content .t54454 .text-right { text-align: right; } .printer-preview-content .t54454 .text-center { text-align: center; } .printer-preview-content .t54454 .no-wrap { white-space: nowrap; } /* ### BASE - GRID AND RE-USABLE LAYOUT COMPONENTS ### */ .printer-preview-content .t54454 .row { width: 100%; display: block; clear: both; } .printer-preview-content .t54454 .row:after { content: ""; display: table; clear: both; } .printer-preview-content .t54454 .col-xs-1, .printer-preview-content .t54454 .col-xs-2, .printer-preview-content .t54454 .col-xs-3, .printer-preview-content .t54454 .col-xs-4, .printer-preview-content .t54454 .col-xs-5, .printer-preview-content .t54454 .col-xs-6, .printer-preview-content .t54454 .col-xs-7, .printer-preview-content .t54454 .col-xs-8, .printer-preview-content .t54454 .col-xs-9, .printer-preview-content .t54454 .col-xs-10, .printer-preview-content .t54454 .col-xs-11, .printer-preview-content .t54454 .col-xs-12 { float: left; min-height: 1px; margin-bottom: 36px; } .printer-preview-content .t54454 .col-xs-12 { width: 100%; } .printer-preview-content .t54454 .col-xs-11 { width: 91.66666667%; } .printer-preview-content .t54454 .col-xs-10 { width: 83.33333333%; } .printer-preview-content .t54454 .col-xs-9 { width: 75%; } .printer-preview-content .t54454 .col-xs-8 { width: 66.66666667%; } .printer-preview-content .t54454 .col-xs-7 { width: 58.33333333%; } .printer-preview-content .t54454 .col-xs-6 { width: 50%; } .printer-preview-content .t54454 .col-xs-5 { width: 41.66666667%; } .printer-preview-content .t54454 .col-xs-4 { width: 33.33333333%; } .printer-preview-content .t54454 .col-xs-3 { width: 25%; } .printer-preview-content .t54454 .col-xs-2 { width: 16.66666667%; } .printer-preview-content .t54454 .col-xs-1 { width: 8.33333333%; } .printer-preview-content .t54454 .col-no-margin { margin-bottom: 0 !important; } .printer-preview-content .t54454 .clear-fix::after { content: ""; clear: both; display: table; } .printer-preview-content .t54454 .half-margin-top { margin-top: 9px !important; } .printer-preview-content .t54454 .half-margin-bottom { margin-bottom: 9px !important; } .printer-preview-content .t54454 .margin-bottom { margin-bottom: 18px !important; margin-top: 1px; } .printer-preview-content .t54454 .margin-top { margin-top: 18px !important; } .printer-preview-content .t54454 .double-margin-top { margin-top: 36px !important; } .printer-preview-content .t54454 .double-margin-bottom { margin-bottom: 36px !important; } .printer-preview-content .t54454 .strikethrough { text-decoration: line-through !important; } .printer-preview-content .t54454 .break { word-break: break-all !important; } /* ### BASE - TABLE STYLING ### */ .printer-preview-content .t54454 table, .printer-preview-content .t54454 .table { width: 100%; max-width: 100%; background-color: transparent; border-collapse: collapse; } .printer-preview-content .t54454 table thead { display: table-row-group; } .printer-preview-content .t54454 table tbody tr { page-break-inside:avoid !important; page-break-after:auto !important; } .printer-preview-content .t54454 table tbody tr td { page-break-inside:avoid !important; } .printer-preview-content .t54454 th { white-space: nowrap; text-align: left; vertical-align: middle; border-top: 0; border-bottom: 0; } .printer-preview-content .t54454 td { vertical-align: middle; border-top: 0; border-bottom: 0; } .printer-preview-content .t54454 .order-table tbody > tr td { background-color: #FFFFFF; } .printer-preview-content .t54454 .pricing-table { position: relative; top: 1px; } .printer-preview-content .t54454 .pricing-table tbody > tr > td { background-color: #FFFFFF; } /* .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title { word-break: break-all; }*/ .printer-preview-content .t54454 th.order-table-qty { width: 10%; } .printer-preview-content .t54454 th.order-table-price { width: 10%; } .printer-preview-content .t54454 th.order-table-item-total, .printer-preview-content .t54454 th.order-table-reason { width: 17%; } .printer-preview-content .t54454 th.order-table-return-comments { width: 30%; } .printer-preview-content .t54454 .pricing-table-text { text-align: right; white-space: nowrap; } /* ### BASE - PRODUCT IMAGE SIZING TO RETAIN LINE HEIGHT RYTHM) ### */ .printer-preview-content .t54454 .product-image-wrapper { width: 108px; max-height: 108px; } .printer-preview-content .t54454 .product-image { padding: 0 4px; page-break-inside:avoid !important; max-width: 108px; } /* ### BASE - LISTS RESET ### */ .printer-preview-content .t54454 ul { list-style: none; } .printer-preview-content .t54454 li { color: {{ secondary_font_color }}; list-style: none; } /* ### BASE - LOGO ### */ .printer-preview-content .t54454 .logo-wrapper { display: inline-block; width: 100%; padding-bottom: 9px; } .printer-preview-content .t54454 .logo { float: left; padding-right: 15px; max-width: 31%; max-height: 76.88px; } /* ### BASE - BARCODE ### */ .printer-preview-content .t54454 .order-number-barcode, .printer-preview-content .t54454 .product-barcode { display: block; } /* ### BASE - ADDITONAL COMMON SHARED TYPOGRAPHY AND ALIGNMENT ### */ .printer-preview-content .t54454 .address { margin-right: 5%; } .printer-preview-content .t54454 .col-xs-8 .notes, .printer-preview-content .t54454 .col-xs-6 .notes { margin-right: 20%; } .printer-preview-content .t54454 .notes-title, .printer-preview-content .t54454 .return-codes { margin: 9px 0; } /* ### BASE - HORIZONTAL RULE MARKS ### */ .printer-preview-content .t54454 hr { background: {{ theme_color }}; border-top: 0; border: 0; height: 2px; width: 100%; margin-bottom: -2px; } } @media screen,print { /* ### DESIGN SPECIFIC - TYPOGRAPHY ### */ .printer-preview-content .t54454 h1 { font-family: '{{ secondary_font }}'; font-weight: 400; margin-bottom: 0px !important; color: {{ primary_font_color }}; } .printer-preview-content .t54454 h2 { font-family: '{{ secondary_font }}'; } .printer-preview-content .t54454 h3 { font-family: '{{ secondary_font }}'; color: {{ theme_color }}; } .printer-preview-content .t54454 .logo-wrapper { margin: 0 0; padding: 0 !important; } .printer-preview-content .t54454 .logo { margin: 0 0; padding: 0 !important; } /* ### DESIGN SPECIFIC - LOGO POSITIONING ### */ .printer-preview-content .t54454 .logo { float: none; display: block; margin: 0 auto; } /* ### DESIGN SPECIFIC - STORE DETAILS ### */ .printer-preview-content .t54454 .shop-block { text-align: center; } .printer-preview-content .t54454 .shop-domain { font-weight: normal; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .shop-address-name { display: block; font-size: 16px; font-weight: 700; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .shop-address-block b { font-weight: 700; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - ORDER DETAILS ### */ .printer-preview-content .t54454 .order-details-title { display: inline-block; width: 40%; } .printer-preview-content .t54454 .order-details .order-details-date { display: none; } .printer-preview-content .t54454 .order-details li:first-of-type * { font-weight: 700; /* text-transform: uppercase; */ padding-bottom:9px; color: {{ primary_font_color }}; } .printer-preview-content .t54454 .order-details li:not(:first-of-type) * { font-weight: normal; } /* ### DESIGN SPECIFIC - BILL TO AND SHIP TO ADDRESS ### */ .printer-preview-content .t54454 .address-title { font-weight: 700; /* text-transform: uppercase; */ padding-bottom:9px; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - TABLE HEADER ### */ .printer-preview-content .t54454 .order-table thead tr th { padding-left: 0px; padding-right: 0px; padding-top: 9px; padding-bottom:4px; font-weight: 700; vertical-align: bottom; color: {{ primary_font_color }}; border-bottom: 2px solid {{ theme_color }}; /* text-transform: uppercase; */ } /* ### DESIGN SPECIFIC - TABLE BODY (SHARED) ### */ .printer-preview-content .t54454 .order-table tbody tr td, .printer-preview-content .t54454 .pricing-table tbody tr td { padding-left: 0px; padding-right: 0px; border-top: 0; padding-top: 6px; padding-bottom:5px; border-bottom: 1px solid #f3f3f3; } /* ### DESIGN SPECIFIC - ORDER TABLE SPECIFIC ### */ .printer-preview-content .t54454 .order-table thead tr th.order-table-title { /* text-transform: uppercase; */ } .printer-preview-content .t54454 th.order-table-qty, .printer-preview-content .t54454 th.order-table-price, .printer-preview-content .t54454 th.order-table-item-total { width: 14%; } .printer-preview-content .t54454 th.order-table-item-total, .printer-preview-content .t54454 th.order-table-reason { width: 20%; } .printer-preview-content .t54454 th.order-table-return-comments { width: 30%; } .printer-preview-content .t54454 .order-table tbody > tr > td.line-item-description { color: {{ primary_font_color }}; font-weight: 700; } .printer-preview-content .t54454 .order-table tbody > tr > td:last-of-type, .printer-preview-content .t54454 .order-table tbody > tr > td:last-of-type * { } .printer-preview-content .t54454 .order-table .product-image-wrapper { padding-right: 8px; } .printer-preview-content .t54454 .order-table tbody > tr > td.line-item-description span.line-item-refund { display: inline-block; padding: 2px 8px; margin-top: 4px; background-color: #FFEA8A; border-radius: 18px; } /* ### DESIGN SPECIFIC - PRICING TABLE SPECIFIC ### */ .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title, .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-title span { /* text-transform: uppercase; */ } .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-text, .printer-preview-content .t54454 .pricing-table tbody > tr > td.pricing-table-text * { } .printer-preview-content .t54454 .pricing-table tbody > tr.pricing-table-total-row .pricing-table-title, .printer-preview-content .t54454 .pricing-table tbody > tr.pricing-table-total-row .pricing-table-text { color: {{ primary_font_color }}; font-weight: 700; border-bottom: 2px solid {{ theme_color }}; } /* ### DESIGN SPECIFIC - ORDER NOTES ### */ .printer-preview-content .t54454 .notes-title { font-weight: 700; /* text-transform: uppercase; */ color: {{ primary_font_color }}; } .printer-preview-content .t54454 .notes-text { margin-bottom: 18px; } /* ### DESIGN SPECIFIC - RETURN FORM REASON CODES ### */ .printer-preview-content .t54454 .return-codes b, .printer-preview-content .t54454 .return-code b * { margin-bottom: 18px; font-weight: 700; color: {{ primary_font_color }}; } /* ### DESIGN SPECIFIC - THANK YOU MESSAGE ### */ /* ### DESIGN SPECIFIC - GIFT MESSAGE ### */ .printer-preview-content .t54454 .gift-text { font-weight: 700; padding-top:18px; padding-bottom:18px; font-size: 13px; } .printer-preview-content .t54454 .gift-text * { font-weight: 700; font-size: 13px; } .printer-preview-content .t54454 .gift-text svg { padding-bottom:9px; } /* ### DESIGN SPECIFIC - TERMS AND CONDITIONS ### */ .printer-preview-content .t54454 .terms-text { font-size: 10px; } .printer-preview-content .t54454 .terms-text * { font-size: 10px; } /* ### DESIGN SPECIFIC - SOCIAL ICONS ### */ .printer-preview-content .t54454 .social-icons { display: inline; width: 18px; margin: 9px 2%; } }

Packing Slip

  • {{ date | date: "%B %d, %Y" }}
Bill to
    {% assign order.billing_address = order.billing_address | default: customer.default_address %} {% if order.billing_address and order.billing_address != blank %}
  • {{ order.billing_address.name }}
  • {% if order.billing_address.company != blank %}
  • {{ order.billing_address.company }}
  • {% endif %}
  • {{ order.billing_address.address1 }}
  • {% if order.billing_address.address2 != blank %}
  • {{ order.billing_address.address2 }}
  • {% endif %}
  • {{ order.billing_address.city }}, {% if order.billing_address.province_code != blank %}{{ order.billing_address.province_code }}{% else %}{{ order.billing_address.province }}{% endif %} {{ order.billing_address.zip | upcase }}
  • {% if shop.country != order.billing_address.country %}
  • {{ order.billing_address.country }}
  • {% endif %} {% elsif customer != blank %} {% if customer.name != blank %}
  • {{ customer.name }}
  • {% endif %} {% if customer.email != blank %}
  • {{ customer.email }}
  • {% endif %} {% endif %}
{% if order.shipping_address != "" and order.shipping_address != nil %}
Ship to
{% endif %}
    {% if order.shipping_address and order.shipping_address != blank %}
  • {{ order.shipping_address.name }}
  • {% if order.shipping_address.company != blank %}
  • {{ order.shipping_address.company }}
  • {% endif %}
  • {{ order.shipping_address.address1 }}
  • {% if order.shipping_address.address2 != blank %}
  • {{ order.shipping_address.address2 }}
  • {% endif %}
  • {{ order.shipping_address.city }}, {% if order.shipping_address.province_code != blank %}{{ order.shipping_address.province_code }}{% else %}{{ order.shipping_address.province }}{% endif %} {{ order.shipping_address.zip | upcase }}
  • {% if shop.country != order.shipping_address.country %}
  • {{ order.shipping_address.country }}
  • {% endif %} {% endif %}
  • Order {{ order.order_name }}
  • Order Date {{ order.created_at | date: "%B %d, %Y" }}
  • {% if order.shipping_method.title != blank %}
  • Shipping {{ order.shipping_method.title }}
  • {% endif %}
{% assign line_items = line_items | sort: "name" %} {% assign hidden_variant_ids = "" %} {% for line_item in line_items %} {% if line_item.properties._boldVariantIds %} {% assign hidden_variant_ids = hidden_variant_ids | append: ',' %} {% assign hidden_variant_ids = hidden_variant_ids | append: line_item.properties._boldVariantIds %} {% endif %} {% endfor %} {% assign hidden_variant_ids = hidden_variant_ids | split: ',' %} {% for line_item in line_items %} {% if line_item.quantity < 1 or line_item.title == "Tip" or line_item.title == "Tips" %}{% continue %}{% endif %} {% if hidden_variant_ids contains line_item.variant_id %}{% continue %}{% endif %} {% assign adjusted_item_price = line_item.price %} {% assign adjusted_line_price = line_item.price | times: line_item.quantity %} {% for line_item2 in line_items %} {% if line_item.properties._boldVariantIds contains line_item2.variant_id %} {% assign adjusted_item_price = adjusted_item_price | plus: line_item2.price %} {% assign adjusted_line_option_price = line_item2.price | times: line_item.quantity %} {% assign adjusted_line_price = adjusted_line_price | plus: adjusted_line_option_price %} {% endif %} {% endfor %} {% endfor %}
Item Description Qty
{% if line_item.image != blank %}{% endif %}

{{ line_item.title | replace: " - Default Title", "" }}

{% if line_item.sku != blank %}

{{ line_item.sku }}

{% endif %} {% for p in line_item.properties %} {% assign p_internal = p.first | slice: 0 %} {% unless p.first contains "builder_id" or p.first contains "builder_info" or p.first contains "master_builder" or p_internal == "_" or p.last == "" or p.last == blank %} {% if p.last contains "cdn.shopify.com" or p.last contains "/uploads/" or p.last contains ".png?" or p.last contains ".jpg?" or p.last contains "//uploadery.s3" %}

{{ p.first }}:

{{ p.first }} {% else %}

{{ p.first }}: {{ p.last | newline_to_br }}

{% endif %} {% endunless %} {% endfor %} {% assign refunded_quantity = 0 %} {% for refund in refunds %} {% for refund_line_item in refund.refund_line_items %} {% if line_item.id == refund_line_item.line_item_id %} {% assign refunded_quantity = refunded_quantity | plus: refund_line_item.quantity %} {% endif %} {% endfor %} {% endfor %} {% if refunded_quantity > 0 %} Refunded Ă— {{ refunded_quantity }} {% endif %}
Ă— {{ line_item.quantity }}
{% if note != blank %}
Notes
{% endif %}
{{ note | newline_to_br }}

{% if customer.orders_count <= 1 %}

Thank you very much for your order!

{% else %} Thank you very much for your re-order! {% endif %}


ATTENTION: Since Dam Good English Muffins contain no artificial preservatives, to maintain freshness, we recommend that you store them in the freezer, where they will last up to 12 months, or in the fridge, where they will last up to one week.

Please see the back of our package for serving instructions.



Happy toasting,
Denise and Olivia Weale, mother daugher co-founders


Dam Good™ English Muffins

Peekskill, NY 10566

customercare@damgoodenglishmuffins.com | (914) 293-7190

[www.damgoodenglishmuffins.com](http://www.damgoodenglishmuffins.com) | @damgoodenglishmuffins


Have replied twice to this with code for you to test and neither of them appears to save so have sent it to the customercare email addy at the bottom of the code.

Have fixed what seemed to be missing to me but quickly realised having never saw one of your invoices I wasn’t 100% certain what it should look like. Copy the text from the file on the email into a test template and see if I’ve missed anything :slightly_smiling_face: