I am needing to add the customers order count to staff notifications template for new orders. So we are able to see how many times this customer has ordered from us. Can anyone help ![]()
Topic summary
A user needs to display a customer’s total order count in the staff notification template for new orders, allowing staff to see how many times each customer has previously ordered.
Solution provided:
- Use the Liquid variable
{{ customer.orders_count }} - This variable accesses the customer object’s order count property
- Insert the code in the appropriate location within the staff notification template
Status: The question appears resolved with a straightforward technical solution and reference to Shopify’s Liquid documentation.
The code should be similar to {{ customer.orders_count }} (Liquid objects: customer)
Just need to paste it in the right place…