Hi there - I’m trying to add the {{ staff.name }} into the email title string for new order notifications, to ensure my admin can allocation comission without having to go into each email.
at present the code reads:
New {{ order.source_name }} Order. Served by {{ staff.name }} from {{ shop.name }}. Order {{ name }}{% if customer.name %} placed by {{ customer.name }}{% endif %}{% if has_high_risks? %} (Risk of fraud){% endif %}
But this outputs to:
New web Order. Served by from Vineyard Cellars. Order #9999 placed by John Smith
It seems to skip the staff name, and I can’t get it to add it in. Anyone got any ideas?
Many thanks!
Joseph.