Plugin Contributor
Ewout
(@pomegranate)
What kind of XML do you require? XML is not a ‘printable’ format, it is a datastructure (meant to be read by computers, not humans) and there are many different standards
yes we know…we need to send an xml FPA 1.2.1 to another program to pay tax
and ship doxument in word or another ormat
-
This reply was modified 7 years, 6 months ago by
emporio3.
Plugin Contributor
Ewout
(@pomegranate)
Ah I see – that’s the Italian standard, ‘FatturaPA’, which is currently supported only via the Italian add-on. We are also working on support for various XML formats directly in our own plugin, but this is currently still in development.
Ok..
And is there a way to export packing slip in doc format or another editable format?
Cause we need every time to insert some information like weight, number of pieces and others and we would like to insert that information in woocommerce order list panel
Thanks
Plugin Contributor
Ewout
(@pomegranate)
We only export to PDF, but you can edit directly in WooCommerce if you enable editing of paid orders:
add_filter( 'wc_order_is_editable', '__return_true' );
You can then add extra ‘meta’ to the items which will be printed on the invoice.
If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters