Change CSV export separators
-
Hello,
I’m searching to change the CSV separator used when I export users but I haven’t found a solution. I would like to know if this is possible, and if it’s not, could you please add this feature ? I think it would be very simple, I’ve located the line to modify :
fputcsv( $handle, $row );
wp-members/includes/admin/class-wp-members-user-export.php (line 251)Replaced by :
$separator = ','; $separator = apply_filters('wpmem_user_export_separator', $separator); fputcsv($handle, $row, $separator);
Thanks by advance for your answer !
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Change CSV export separators’ is closed to new replies.