Invoice Settings If your zCart verion is >= V-2.0.6 < 2.17.0
Note: No longer in use from 2.17.0 version.
You can configure your preferences for invoices like the title, paper size, and color, etc.
The platform is all set to generate nicely formatted invoices without any configuration needed. To set your own preferences please open the config/invoice.php
file and change the default settings.
The default configuration:
/* |-------------------------------------------------------------------------- | Title |-------------------------------------------------------------------------- | | Keep it empty to use the default title 'Invoice' that comes from language file. | */ 'title' => '', /* |-------------------------------------------------------------------------- | Color |-------------------------------------------------------------------------- | | Set primary color in hex | */ 'color' => '#007fff', /* |-------------------------------------------------------------------------- | Document size |-------------------------------------------------------------------------- | | Supported document size values are A4, letter, legal | */ 'size' => 'A4',
By default, the system uses paper size A4
and and title Invoice
. You can also set the invoice color here, use hexadecimal color code.
TIPs: Keep the title empty to allow the script to pick the title from the translated file.