Viewing 2 replies - 1 through 2 (of 2 total)
  • The CSV should be comma separated, not semi-colon

    Turn On Social is correct, the plugin doesn’t work the way it is written,but you can modify it easily. There are two lines that need to be edited in users-data-to-csv.php in the plugin directory.

    Line 149 change
    echo implode( ';', $headers ) . "\n"; to echo implode( ',', $headers ) . "\n";
    Line 167 change
    echo implode( ';', $data ) . "\n"; to echo implode( ',', $data ) . "\n";

    Not sure why the author used semi-colons but it is an easy fix.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSV is a mess!’ is closed to new replies.