Does anyone Have the liquid code for adding customer info on email receipts sent from POS?

Does anyone Have the liquid code for adding customer info on email receipts sent from POS?

Vinhawk5992
Visitor
1 0 0

We have many customers request that their info in on the receipt that we send them after a POS transaction.  Many are international customers and need their Name, company, address, etc on the receipt in order to claim when traveling back abroad.  this is how our email receipt looks like now.  Any info or pointing to the right direction would be greatly appreciated.

Anson PDR Order 57345 EMV Receipt.jpg

Reply 1 (1)

peterloane
Shopify Partner
47 5 14

A starting point might be
https://help.shopify.com/en/manual/sell-in-person/shopify-pos/receipt-management/customize-receipts

 

and this bit
"If you want to edit your email and SMS receipts for POS, then go to the Notifications settings of your Shopify admin, and edit the POS and mobile receipt template."

 

and then something like this added to your receipt template

<table class="row">
<tr>
<td class="customer-info__item">
<h4>Billing address</h4>
{{ billing_address | format_address }}
</td>
</tr>
</table>

 

Regards
Peter