Invoice customization
Autor: Philippe D.
Besucht 2167,
Followers 1,
Geteilt 0
Hello,
Is it possible to customize Order_id Ex: R/Text-101...102...103?
Customize the Invoice Decription?
By default:
Company First Name Last Name (Email address)
Address Zip
code
Country
Telephonne Number
I would like:
Company
First Name Last Name (Email address)
Address
VAT Number
Thank you
Philippe
Gepostet am
Hello Philippe,
you can create an order number composed by custom text with this code in the HEAD section of the whole website (step 1 | Advanced Settings | Head section)
This code as example creates an order number composed by 5 numbers:
<script type="text/javascript">
x5engine.boot.push(function () {
x5engine.cart.manager.settings({
"order_no_format": "[0-9][0-9][0-9][0-9][0-9]"
});
}, false, "last");
</script>
The Program is not generating invoices but order emails. The invoice needs to be made by you once you verified the payment.
Many thanks!
Autor
Thanks Claudio
Philippe