change the delimiter
-
Good plugin, I love how easy it is to hook in to. It’s a shame though that I have to overwrite the plugin in order to change the CSV delimiter. Could you provide a hook in the future to change the delimiter and enclosure characters?
Being able to change the delimiter is kind of important because Excel uses local settings to automatically determine what character should be used as delimiter. In countries where “,” is used as a decimal separator, the csv delimiter will almost always be semicolon “;” instead of comma.
For the moment I did a search in order-export-process.php for the lines
fputcsv( $csv_file, $csv_values );
and replaced them with
fputcsv( $csv_file, $csv_values, ';' );
https://www.ads-software.com/plugins/woocommerce-simply-order-export/
- The topic ‘change the delimiter’ is closed to new replies.