/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


add_filter('woocommerce_currency_symbol', 'custom_currency_symbol', 10, 2);
function custom_currency_symbol($currency_symbol, $currency) {
    switch($currency) {
        case "SGD": $currency_symbol = 'S$'; break; // 确保使用正确的符号格式
    }
    return $currency_symbol;
}
