Indian Rupees Sybmol is looking like "₹" on single product page
hi,
Indian Rupees Sybmol is looking like "₹" on single product page ( image attached.)
Elsewhere it is correct displaying ok.
i am not able to find why its happening.
Solution awaited.
bye
Comments
please send us url to page where this sign does not work and we'll have a look on it.
Thanks!
visit here
i don ' t know how its visible though i have applied under construction
now all symbol of rs. shown as above
===============================================
add_filter( 'woocommerce_currencies', 'add_inr_currency' );
add_filter( 'woocommerce_currency_symbol', 'add_inr_currency_symbol' );
function add_inr_currency( $currencies ) {
$currencies['INR'] = 'INR';
return $currencies;
}
function add_inr_currency_symbol( $symbol ) {
$currency = get_option( 'woocommerce_currency' );
switch( $currency ) {
case 'INR': $symbol = 'Rs.'; break;
}
return $symbol;
}
==========================================