Skip to content

Instantly share code, notes, and snippets.

@ibrahimmumcu
Created January 1, 2021 15:58
Show Gist options
  • Save ibrahimmumcu/43cd6ace87168075926b359003855626 to your computer and use it in GitHub Desktop.
Save ibrahimmumcu/43cd6ace87168075926b359003855626 to your computer and use it in GitHub Desktop.
Woocommerce - Change Turkish Lira currency symbol to TL text
<?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