Created
January 1, 2021 15:58
-
-
Save ibrahimmumcu/43cd6ace87168075926b359003855626 to your computer and use it in GitHub Desktop.
Woocommerce - Change Turkish Lira currency symbol to TL text
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
<?php | |
/** | |
* Change Turkish Lira currency symbol to "TL" | |
*/ | |
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); | |
function change_existing_currency_symbol( $currency_symbol, $currency ) { | |
switch( $currency ) { | |
case 'TRY': $currency_symbol = 'TL'; break; | |
} | |
return $currency_symbol; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment