Last active
April 27, 2024 18:10
-
-
Save rafsuntaskin/8225bc350a968817734abd4b889542a6 to your computer and use it in GitHub Desktop.
Alter WooCommerce CSV Export delimiter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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