Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This hook can be used to manipulate the separator in the downloaded CSV log file.
Usage
add_filter('frm_logs_csv_sep', 'change_logs_csv_sep');
Parameters
- $separator (string)
Examples
Replace separator on CSV log
Use this code example to separate arrays with a space instead of a comma upon downloading the CSV log file.
add_filter('frm_logs_csv_sep', 'change_logs_csv_sep');
function change_logs_csv_sep($separator){
return ' ';
}