Sometimes you may want to change the separator in the order export files produced by the WP e-Commerce Export plugin. Fortunately you can override the separator with a simple filter.

Just drop the snippet below into a plugin, or your theme’s functions.php file. This example uses a semi-colon (;) as a separator – but you can use any character you need.

function lw_ses_wpscd_csv_separator($sep) {
	return ';';
}
add_filter('ses_wpscd_csv_separator', 'lw_ses_wpscd_csv_separator');

This entry was posted in .
Bookmark the permalink.