Skip to content

Instantly share code, notes, and snippets.

@ZgrK
Created May 10, 2020 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZgrK/7049bb6cc834e8cd8c0a4a3d10af282c to your computer and use it in GitHub Desktop.
Save ZgrK/7049bb6cc834e8cd8c0a4a3d10af282c to your computer and use it in GitHub Desktop.
WooCommerce ₺ Sembolunu TL ile değiştir
/**
* ₺ Sembolunu TL ile değiştir
* Wordpress Yardım
* https://wordpressyardim.com
*/
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