Snippets

Visser Labs Override the default currency decimal separator in exports

You are viewing an old version of this snippet. View the current version.
Revised by Michael Visser 830f5a0
1
2
3
4
5
6
7
8
9
<?php
function custom_woo_ce_wc_price_decimal_sep() {

    // Override the default thousand separator in Store Exporter Deluxe 
    return ',';

} 
add_filter( 'woo_ce_wc_price_decimal_sep', 'custom_woo_ce_wc_price_decimal_sep' );
?>
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.