Formatting order notes with order printer

Solved

Formatting order notes with order printer

rileycreekd
Visitor
2 0 1

Hello! I am looking for assistance in editing my code so that my order notes will hold line breaks. As you can see in my order note on shopify I have each item broken apart and when printing my orders it is merging everything into a paragraph. This is very hard to follow and I often find myself having to open the app to view the notes with the line breaks.

 

My code is as follows

 

<b{% if order.note %}
<h2>Note</h2>
<p>{{ order.note }}</p>
{% endif %}

 

 

shopify help.jpg

Accepted Solution (1)

namphan
Shopify Partner
2692 349 397

This is an accepted solution.

Hi @rileycreekd,

You can follow these steps:

- Step 1: Go to Order Printer (legacy) app > Manage templates.

- Step 2: Edit template default > Find '{{ note }}' and add code:

Screenshot.png

Code:

{{ note | newline_to_br }}

 

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

View solution in original post

Replies 4 (4)

Guleria
Shopify Partner
4181 812 1168

Error in your first line of code.
Use this one

{% if order.note %}
    <h2>Note</h2>
    <p>{{ order.note }}</p>
{% endif %}

 

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

namphan
Shopify Partner
2692 349 397

This is an accepted solution.

Hi @rileycreekd,

You can follow these steps:

- Step 1: Go to Order Printer (legacy) app > Manage templates.

- Step 2: Edit template default > Find '{{ note }}' and add code:

Screenshot.png

Code:

{{ note | newline_to_br }}

 

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
rileycreekd
Visitor
2 0 1

Thank you so much for a quick and easy to follow answer!! 

namphan
Shopify Partner
2692 349 397

Hi @rileycreekd,

You're welcome and nice to meet you 😊

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com