Home / Admin / Change CSV Export Delimiter
Duplicate Snippet

Embed Snippet on Your Site

Change CSV Export Delimiter

Changes the CSV delimiter that separates each form field on a form export.

Remember to change the semi-colon (;) to the separator of your choice.

<10
Code Preview
php
<?php
/**
 * Filters the delimiter used in CSV exports of form entries
 * 
 * @link https://wpforms.com/developers/change-csv-export-delimiter/
 * 
 * For support, please visit: https://www.facebook.com/groups/wpformsvip
 */
 
function wpf_dev_pro_admin_entries_export_configuration( $configuration ) {
 
    $configuration[ 'csv_export_separator' ] = ';';
 
        return $configuration;
 
}
 
add_filter( 'wpforms_pro_admin_entries_export_configuration', 'wpf_dev_pro_admin_entries_export_configuration', 10, 1 );

Comments

Add a Comment