Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Auke1810
Created October 17, 2021 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Auke1810/501e334691074e20d1bcd8f587d56177 to your computer and use it in GitHub Desktop.
Save Auke1810/501e334691074e20d1bcd8f587d56177 to your computer and use it in GitHub Desktop.
CHange the separator in the custom CSV builder
<?php
// change the separator in the custom CSV builder from wpmarketingrobot
function change_csv_separator() {
return ';'; //return the separator you want.
}
add_filter( 'wppfm_csv_separator', 'change_csv_separator' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment