Go to Appearance > Editor
Click on Theme Functions(functions.php)
note:if u are usig a child theme then go to the parent theme and edit the functions.php
Scroll to the very bottom and add a new line after the very last character
Copy and paste the following into the document
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;
}