Rs. currency symbol can use rupee sign html entity

@see http://www.w3schools.com/charsets/ref_utf_currency.asp
This commit is contained in:
Shiva Poudel 2015-11-11 01:12:48 +05:45
parent 976f83c5be
commit 6a268f003f
1 changed files with 2 additions and 4 deletions

View File

@ -407,14 +407,12 @@ function get_woocommerce_currency_symbol( $currency = '' ) {
$currency_symbol = 'kr';
break;
case 'NPR' :
$currency_symbol = 'Rs.';
case 'PKR' :
$currency_symbol = '&#8360';
break;
case 'PHP' :
$currency_symbol = '₱';
break;
case 'PKR' :
$currency_symbol = 'Rs.';
break;
case 'PLN' :
$currency_symbol = 'zł';
break;