Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Last active February 14, 2024 15:21
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rafsuntaskin/8225bc350a968817734abd4b889542a6 to your computer and use it in GitHub Desktop.
Save rafsuntaskin/8225bc350a968817734abd4b889542a6 to your computer and use it in GitHub Desktop.
Alter WooCommerce 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