Created
April 30, 2026 13:10
-
-
Save DmitryBychenko/b8dbeb93304dc936b764d121ef436d99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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