Woocommerce : Indian Currency and symbol
8 Feb 2013
I’ve been playing around with Woocommerce to create online retail stores. In the initial setup, you realise that Woocommerce doesn’t have Indian Currency and the new unicode symbol ₹ as an option.
To add this feature, you can do the following:
a. Find and edit the functions.php file of the Theme that is currently active.
b. Add the following code at the end:
add_filter( 'woocommerce_currencies', 'add_my_currency' );
function add_my_currency( $currencies ) {
$currencies['ABC'] = __( 'Indian Rupee (₹)', 'woocommerce' );
return $currencies;
}
add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2);
function add_my_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'ABC': $currency_symbol = '₹ '; break;
}
return $currency_symbol;
} |
c. Go to WordPress Admin -> Woocommerce -> Settings and select the new Indian Rupee option that appears.
That should do it!


It’s taken me a few years to understand how home loans work in India. This post should help anyone who’s got a home loan from a bank in India or is planning to take one. The most important tool you will need to understand the entire subject of home loans- an interactive EMI calculator – is available at the bottom on this post (requires flash). If you enter the amount of home loan you’re looking at, the interest rates being offered etc., you can figure out the EMI -but more important, you can visually see the total amount you would pay for the entire loan. That’s when you get a shock. 












