11-18-2020 01:57 PM
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?
11-18-2020 01:58 PM
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.
11-16-2021 07:03 PM
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.
08-25-2023 12:24 PM
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>
04-25-2024 03:51 PM
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>