Skip to content

Instantly share code, notes, and snippets.

@DevWL
Forked from rafsuntaskin/functions.php
Last active June 10, 2021 14:44
Show Gist options
  • Select an option

  • Save DevWL/2851edc795009ff9d99a730dc1a243e7 to your computer and use it in GitHub Desktop.

Select an option

Save DevWL/2851edc795009ff9d99a730dc1a243e7 to your computer and use it in GitHub Desktop.
WooCommerce - Alter CSV Export delimiter
<?php
add_filter( 'woocommerce_product_export_delimiter', function ( $delimiter ) {
// set your custom delimiter
$delimiter = '.';
return $delimiter;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment