Hi, @glguy:
Can the tax be itemised on each line instead of grouped at the bottom – so there are 4 columns (Product,quantity,price,tax)
This can be achieved with the customizer, included in the Premium Templates extension, which allows you to easily add or remove elements from the document structure, including the product tax rate and VAT amount per line:
How to show 0% tax for zero rate products. I have zero rated products but on products with zero rate nothing shows. To have a compliant invoice it should show tax 0 – (0%) for orders with no tax. My products are setup correct to show either 0% or 20% tax on ordering and this should show on the invoice. Today it’s blank for 0% products.
By default, WooCommerce hides zero tax amounts, but you can try adding this code snippet in your site to display them:
add_filter( 'woocommerce_order_hide_zero_taxes', '__return_false' );
