Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogist/6675658 to your computer and use it in GitHub Desktop.
Save woogist/6675658 to your computer and use it in GitHub Desktop.
WooCommerce Customer/Order XML Export Suite: Change XML encoding
<?php
function wc_sample_xml_change_xml_encoding() {
return 'ISO-8859-1';
}
add_filter( 'wc_customer_order_xml_export_suite_xml_encoding', 'wc_sample_xml_change_xml_encoding' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment