Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter cribblets

    (@cribblets)

    Never mind. I just realized that you can import with different delimiters. Please disregard, thanks!

    Plugin Author Arshid

    (@arshidkv12)

    Please provide details about CSV client, excel or liberoffice ?

    Please go to wp-content > plugins > contact-form-cfdb7 folder by FTP or file manager. Then open export-csv.php file and replace 54th line with following code.

    fputcsv( $df, $row, ';', ' ');

    Then check it. If it is not working, then use following code.

    fputcsv( $df, $row);

    Plugin Author Arshid

    (@arshidkv12)

    Please feel free to PM.

    Hi, same problem. It caused an issue because I do some automation with these exported csv files. It seems to have changed in a latest update?

    Anyway, I did as you suggested above, and that worked for the first line but not the second line. That is, the field names are in separate columns, but the second row, containing the data from the webform, is still in one column, and separated by ‘;”s not ‘,’.

    Thanks,
    Damian

    Plugin Author Arshid

    (@arshidkv12)

    Please try with following code.
    fputcsv( $df, $row, ';', );

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘CSV Exporting weird’ is closed to new replies.