Skip to content

Instantly share code, notes, and snippets.

@picocodes
Last active December 1, 2020 09:25
Show Gist options
  • Save picocodes/6727f4423dcdfe16fb876af6a8acefbf to your computer and use it in GitHub Desktop.
Save picocodes/6727f4423dcdfe16fb876af6a8acefbf to your computer and use it in GitHub Desktop.
<?php
function my_currency_symbol( $currency_symbol, $currency ) {
if ( $currency_symbol == 'QAR' ) {
return 'QAR';
}
return $currency_symbol;
}
add_filter( 'wpinv_currency_symbol', 'my_currency_symbol', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment