Note: Custom fields are only available in the full version
To create a custom field that displays the product name and all the selected options do the following:
1.- Go to WC Invoice/Custom fields and create a new custom fields.
2.- Create a custom field with this information:
Name: Whatever you want it to be named
Type: Table Column field (because this custom field is going to be added to your invoice table).
Code:
return (new CArrayField("table","meta",""))->GetFormattedMetaData();
Your custom field should looks like this:
Continue Reading →
5
JUL
2019
Do you have another plugin that saves more information and want to display it in a PDF (like woocommerce booking or “Product Add-Ons”? Then you can use the custom field wizard to add this information in your pdf in seconds. All you need to do is this:
1.- Go to ‘Custom Fields’

2.- Click in ‘Open Custom Field Wizard’
Continue Reading →
22
JUN
2018
There are many plugins that add additional information to the orders, typically this information is stored in the Order ‘Custom Fields’ section

In this example i have the custom fields ‘Color’ and ‘Gift Message’.
If you want to add this information in your invoice all you need to do is the following:
1.Create a new custom field

2.- ...
Continue Reading →
10
MAY
2018
In a previous article i explained how to add QRCodes to apdf. This time i am going to explain how to do the same inside the invoice detail table, so you could create a QRCode for the product sku, order price, weight or basically any information of your products.
Getting Started
The process is pretty straight forward, all you need to do is this:
1.- Create a Custom Field
Continue Reading →
20
MAR
2018
The invoice builder already comes bundled with a bunch of fields that you can pick from but you can create your own if those fields are not enough. If you want to create something more advance like a table that display your customer order history or a field that gets the order date and add two days to it (maybe you want to use that as the ‘shipping date’?) you need to use custom fields. In this tutorial i am ...
Continue Reading →
17
JAN
2018