How to find the PO Number field when entering an order?

Hello,

In the Edit Order Invoice template in my store, there’s the following code already in place:
{%- if po_number %}

PO number #{{ po_number }} {%- endif %}

Where does one find the field PO Number when entering an order? I have some customers who will sending in orders via PO. I would like to enter their PO number into their order when I Create Order. Otherwise, I would like just make an order Metafield called PO_Number and display it on their order.

Any help would be great.

Thanks!

Pete

1 Like

bumping to find out where the native PO number function is.

I have created a metafield for it, but would rather use something native, if possible.

I am using the following in my email templates:

{{ order.metafields.custom.customer_po }}
1 Like

I also want to know how to find the po_number is being set in the existing code.

I would also like an answer to this if someone works it out please? My notification template has this in it by default

{% if po_number %}

PO number

#{{ po_number }}

{% endif %}