Skip to content

Instantly share code, notes, and snippets.

@clement-menard
clement-menard / wc-customer-order-csv-export-modify-csv-format.php
Created November 7, 2015 11:51 — forked from maxrice/wc-customer-order-csv-export-modify-csv-format.php
WooCommerce Customer/Order CSV Export - Modify the CSV delimiter, enclosure and BOM character
<?php
// change CSV delimiter to a semi-colon (;)
function wc_csv_export_modify_delimiter() {
return ';';
}
add_filter( 'wc_customer_order_csv_export_delimiter', 'wc_csv_export_modify_delimiter' );
// change CSV enclosure to a pipe (|)
function wc_csv_export_modify_enclosure() {
return '|';