On February 10, 2025, Invoice Templates were updated. Users who had not customised their default template were automatically upgraded to the new version.
Opening a default PDF invoice
- Log in to your Upmind dashboard.
- Click Orders in the side menu.
- Select an order, then click Go to order.
- Click View invoice and then Go to invoice.

- Download the PDF version to review the current layout.


Accessing and editing the invoice template
-
Go to
Settingsfrom the dashboard. - Select PDF templates under E-commerce Settings.

- Choose the Invoice template.

- Use the HTML editor to customise the template code.


Restoring default settings
- Click Restore default in the editor to revert to the original template. This is displayed after making any changes to the Invoice Template settings.
- Click Save to apply changes.

Editing the invoice template code
You have two options when editing the invoice code:- Move or delete existing lines within the editor.
- Add content:
- Click a menu tag from the HTML body.
- Find the desired code snippet.
- Click the snippet label to copy it to the clipboard.
- Paste the snippet into the desired spot in the code.
- Click Save.


Example case: Adjusting the date format
You can customise the date format in your invoice template using the code:format_datetime(pattern='MM/dd/yyyy')
- MMM represents the month.
- d represents the day.
- y represents the year.
- Use MMM/d/y for month-first formats (e.g., 01/23/2025).
- Use d/MMM/y for day-first formats (e.g., 23/01/2025).

Display invoice status on PDF
To show the invoice status on the PDF:- Go to Settings > E-commerce Settings > Order Options > Misc section.
- Enable Show Invoice Status on PDF.

- Next, add the following code to line 174 of the invoice template if using the default template:
{{invoice.display_status}}



