Skip to content

Instantly share code, notes, and snippets.

@atwellpub
Last active August 29, 2015 14:19
Show Gist options
  • Save atwellpub/339631c4465a8fd71b4a to your computer and use it in GitHub Desktop.
Save atwellpub/339631c4465a8fd71b4a to your computer and use it in GitHub Desktop.
change csv export delimiter
<?php
/* changes delimiter to semicolon */
add_filter('leads_csv_delimiter' , function() {
return ';';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment