How to change the way menu item reads in the kitchen

How can I make it so that when ordering oysters it reads to the kitchen like this?

1/2 Raw Oysters
1/2 Chargrilled Oysters

Dozen Raw Oysters
Dozen Chargrilled Oysters

It currently reads like this, as its set in the portions

░░░░░░░░░ D i n e I n ░░░░░░░░░
Date:5/14/2019
Time:12:54 PM
Ticket #1247
Server: Admin
Table: A3

  • 1 Oysters On The Half Shell.1/2
    • AS APP
  • 1 Oysters On The Half Shell.Dozen
    • AS APP
  • 1 Chargrilled Oysters.1/2
    • AS APP
  • 1 Chargrilled Oysters.Dozen
    • AS APP

Would like for it to read like this to the Kitchen

░░░░░░░░░ D i n e I n ░░░░░░░░░
Date:5/14/2019
Time:12:54 PM
Ticket #1247
Server: Admin
Table: A3

  • 1 1/2 Oysters On The Half Shell
    • AS APP
  • 1 Dozen Oysters On The Half Shell
    • AS APP
  • 1 1/2 Chargrilled Oysters
    • AS APP
  • 1 Dozen Chargrilled Oysters
    • AS APP

Change the template. You need to look in the [ORDERS] section.

Think default uses {NAME}

Use instead {PRODUCT NAME} and {PORTION}. This is my order section of template;

[ORDERS]
<L00>{QUANTITY}x {PRODUCT NAME} {PORTION}
{ORDER TAGS}

Your example would be something like;

[ORDERS]
<L00>{QUANTITY}x {PORTION} {PRODUCT NAME}
{ORDER TAGS}

Thanks that solved that.

1 Like