How to Add a Custom Currency and Symbol in Woocommerce

How to Add a Custom Currency and Symbol in Woocommerce
108 Views

WooCommerce Custom Currency Integration

By following the instructions below, you may add a custom currency and its symbol to your WooCommerce store

Navigate to WooCommerce Dashboard > Appearance

Choose Theme File Editor.

Open functions.php which is located in the theme folder.

screenshot webbydemo.in 2023.06.05 10 55 29
<?php
add_filter( 'woocommerce_currencies', 'cxc_add_new_codex_currency_call_back' );
function cxc_add_new_codex_currency_call_back( $cxc_currency ) {
	$cxc_currency['CODEXCOACH'] = __( 'CODEXCOACH CURRENCY', 'cxc-codexcoach' );
	return $cxc_currency;
}
?>

WooCommerce Custom Code Validation

screenshot webbydemo.in 2023.06.05 11 00 42
<?php
add_filter('woocommerce_currency_symbol', 'cxc_add_codex_new_currency_symbol_call_back', 10, 2);
function cxc_add_codex_new_currency_symbol_call_back( $custom_currency_symbol, $custom_currency ) {
	switch( $custom_currency ) {
		case 'CODEXCOACH': $custom_currency_symbol = 'CXC₹'; break;
	}
	return $custom_currency_symbol;
}
?>

Was this article helpful?
YesNo

Leave a comment

Your email address will not be published. Required fields are marked *