⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

How to add symbol Rupiah(Rp.) at datatables viwer??



qaisar
  • profile picture
  • Member

Posted 14 November 2012 - 04:33 AM

This code not works..
do u have idea all??
Thanks before..



function add_inr_currency( $currencies ) {
$currencies['IDR'] = 'Indonesia (Rp.)';
return $currencies;
}

function add_inr_currency_symbol( $symbol ) {
$currency = get_option( 'woocommerce_currency' );
switch( $currency ) {
case 'IDR': $symbol = 'Rp. '; break;
}
return $symbol;
}