Invoice customization
Autore: Philippe D.
Visite 2191,
Followers 1,
Condiviso 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
Postato il
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!
Autore
Thanks Claudio
Philippe