Our free version follows the WooCommerce tax settings, therefore, if you include tax to the prices:
…the Simple template will display the Tax this way:
If you are showing the prices excluding taxes, the PDF invoice will look like this (in a separated line):
In addition, if you choose to display the tax totals itemized:
…the tax rates will be itemized in the total’s area too, if you have more than one tax rate:
With the?Premium Templates?extension, you can use the customizer and tailor your PDF documents, without depending on the WooCommerce tax settings.
That said, you can add that specific VAT sentence next to the total on the PDF documents, by activating this code snippet in your site:
/**
* PDF Invoices & Packing Slips for WooCommerce:
* Add a custom VAT sentence next to the total amount on the PDF invoice
*/
add_filter( 'wpo_wcpdf_woocommerce_totals', function( $totals, $order, $document_type ) {
if ( $document_type == 'invoice' ) {
$totals['order_total']['value'] .= ' <small class="includes_tax">(Incl. of all taxes)</small>.';
}
return $totals;
}, 10, 3 );
If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters