Fixed delimiter mod
-
Just in case anyone else has this issue, or it inspires an extension:
My tables all have the same delimiter (tab), and the TablePress import function sometimes guesses a different delimiter, eg if I have lots of
entries in the first row.
To force the import to use only tab as a delimiter I have modded \classes\class-import.php, replacing
$delimiter = $csv_parser->find_delimiter();
by
$delimiter = "\t";
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Fixed delimiter mod’ is closed to new replies.