Created
October 17, 2021 09:41
-
-
Save Auke1810/501e334691074e20d1bcd8f587d56177 to your computer and use it in GitHub Desktop.
CHange the separator in the custom CSV builder
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 | |
// 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