Hi,
Thanks for this solution. I have two additional questions:
Do i place this code in functions.php of my child theme?
I need to slightly adjust the code:
My tax names in Woocommerce are ‘BTW Hoog‘ and ‘BTW Laag‘. So they contain a whitespace.
What code do i need to use for BTW Hoog? For example here:
var $gst_tax = 0;
var $hst_tax = 0;
because simply replacing ‘gst’ by ‘BTW Hoog’ does not work:
var $BTW Hoog_tax = 0;
var $BTW Laag = 0;
I have two tax rates and i want to export each in a separate column.
Thank you in advance.