Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Last active April 27, 2024 18:10
Show Gist options
  • 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