Skip to content

Instantly share code, notes, and snippets.

@DmitryBychenko
Created April 30, 2026 13:10
Show Gist options
  • Select an option

  • Save DmitryBychenko/b8dbeb93304dc936b764d121ef436d99 to your computer and use it in GitHub Desktop.

Select an option

Save DmitryBychenko/b8dbeb93304dc936b764d121ef436d99 to your computer and use it in GitHub Desktop.
add_filter('woocommerce_currency_symbol', 'techbear_change_multiple_currencies_symbols', 10, 2);
function techbear_change_multiple_currencies_symbols( $currency_symbol, $currency ) {
switch( $currency ) {
case 'RUB': $currency_symbol = 'руб.'; break;
case 'BYN': $currency_symbol = 'бел. руб.'; break;
case 'KZT': $currency_symbol = 'тнг.'; break;
}
return $currency_symbol;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment