cancel
Showing results for 
Search instead for 
Did you mean: 

Possible to include QR code on Packing slip?

SuperMgr-Sarah
Employee
Employee

Original post by user Marc Vetere

 

Does anyone if it is possible to include a QR code on a packing list template and how to do so?

Sarah H.
Austin, Tx
4 REPLIES 4

SuperMgr-Sarah
Employee
Employee

Original reply from user NO-STOCK

 

Yes. As long as you can upload the QR image file to a website or web server, you should be able to reference it using HTML code. The guy who runs this website explains some of it in this blog post. He also sells pre-made packing slips and builds custom designs.

 

Sarah H.
Austin, Tx

sales104
Occasional Contributor

This does not appear to work correctly but the image url is correct. 

 

<img src="https://cdn.shopify.com/s/files/1/2447/5049/files/QRCodeTOList.jpg" height="90px" width="90px">

 

Not sure why. I've tried directly in the packing slip and Packing Slip Footer. It works when I use the URL here too.

 

QRCodeTOList

 

bearblend
First-timer

I know this is a little late, but for anyone who is looking for a solution, I found the following works:

<div style="text-align: center;">

<img src="exampleimagehere.png" style="width: 100px; height: 100px;">

</div>

 

L1B3R0
First-timer

Since I don't feel like anyone truly answered this properly and I went around to a lot of different threads on this I figured I'd add my part. Thanks to @bearblend for his code!

The real problem was that no matter where I hosted my picture it didn't work until I ran across another thread that said to use imgur. No one confirmed that either though so I just wanted to post that it worked for me! Just make sure there is a .jpeg or .png or whatever file type at the end of your URL. 

Adjust width and height as needed.

<div style="text-align: center;">

<img src="https://i.imgur.com/YOURPICTURE.jpeg" style="width: 190px; height: 240px;">

</div>