Hi see attached. How do I make the headings of each column correctly aligned with the information in that column? As you can see item which is the item name is not over the name, same with the barcode, sku and price. Also, how can I space the columns a bit as they are all stuck together?
I’m using the “Order Printer” app by Shopify - https://apps.shopify.com/shopify-order-printer
Lastly, you can see on the packing slip on the button left it has this URL -
https://admin.shopify.com/store/wjhmne-yw/orders?start=MQ%3D%3D
Can we remove that?
Thanks in advanced!
hi and thanks for taking the time to reply. this is the code of the template at the moment:
Packing Slip
Order {{ order.order_name }}
{% if order.po_number %}PO # {{ order.po_number }}
{% endif %}
{{ order.created_at | date: "%B %e, %Y" }}
From
{{ shop.name }}
{{ shop.address | format_address }}
{% if order.shipping_address %}
Ship to
{{ order.shipping_address | format_address }}
{{ order.shipping_method.title }}
{% endif %}
Order Details
{% for line_item in order.line_items %}
{% endfor %}
| Qty |
Item |
Barcode |
SKU |
Price |
| {{ line_item.quantity }} |
{% if line_item.product.featured_image %}
{{ line_item.product.featured_image | product_img_url: '150x150' | img_tag }}
{% endif %}
| {{ line_item.title }} |
{{ line_item.variant.barcode }} |
{{ line_item.sku}} |
{{ line_item.price | money }} |