Mengganti Simbol Rupiah di WooCommerce – Buka file functions.php theme Anda, kemudian paste code dibawah ini :
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'IDR': $currency_symbol = 'IDR '; break; } return $currency_symbol; }