Quantcast
Channel: Freelance Web Developer & Designer from Ghaziabad (nearby Delhi), India - PHP, MYSQL, Joomla, Wordpress Developer, WordPress Expert, WordPress Develper India, WooCommerce Developer, WooCommerce Expert, WooCommerce Developer India, Codeigniter Developer India, OpenCart Developer India, CakePHP, JQuery » WordPress
Viewing all articles
Browse latest Browse all 5

How to Change Indian Rupee Currency Symbol in WooCommerce

$
0
0

To change rupee symbol from default one(Rs.) to ₹ put this code in your theme’s functions.php file

add_filter('woocommerce_currency_symbol', 'inr_currency_symbol', 10, 2);

function inr_currency_symbol( $currency_symbol, $currency ) {
	switch( $currency ) {
		case 'INR': $currency_symbol = '₹';
			break;
	}
	return $currency_symbol;
}

LinkedInShare


Viewing all articles
Browse latest Browse all 5

Trending Articles