How to change a currency symbol
-
Hi
I need to change the Swedish country code from (kr) to (SEK). In my shop everything is fine, but on my orders in the administration part it says (kr) insteed, witch means that my invoices also are wrong. It is improtnant for the bookkeeping.
I found the abouve link, but it did not work
I changed it to this`/**
* Change a currency symbol
*/
add_filter(‘woocommerce_currency_symbol’, ‘change_existing_currency_symbol’, 10, 2);function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case ‘kr’: $currency_symbol = ‘SEK’; break;
}
return $currency_symbol;
}Anyone whom can help me?
/ChristinaThe page I need help with: [log in to see the link]
- The topic ‘How to change a currency symbol’ is closed to new replies.