Title: Woocommerce currency missing
Last modified: April 17, 2017

---

# Woocommerce currency missing

 *  [osunaflorentz](https://wordpress.org/support/users/osunaflorentz/)
 * (@osunaflorentz)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-currency-missing/)
 * I seem to have some problems with my currency with Woocommerce, on my shop i 
   need to have “Kr” instead of “DKK” so i added the following at the end of Functions.
   php
 * add_filter( ‘woocommerce_currencies’, ‘add_my_currency’ );
 * function add_my_currency( $currencies ) {
    $currencies[‘Kr’] = __( ‘Currency 
   name’, ‘woocommerce’ ); return $currencies; }
 * add_filter(‘woocommerce_currency_symbol’, ‘add_my_currency_symbol’, 10, 2);
 * function add_my_currency_symbol( $currency_symbol, $currency ) {
    switch( $currency){
   case ‘Kr’: $currency_symbol = ‘Kr’; break; } return $currency_symbol; }
 * But now afterwards as i removed the line again, now i don’t have any currency
   at all on the shop.
 * You can see it on below link:
 * [http://sosouh.webin.dk/](http://sosouh.webin.dk/)
 * Click on any product and you will see what i mean.
 * Best regards
    Danni

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Contributor [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-currency-missing/#post-9037743)
 * There is no ‘kr’ currency code.
 * See [https://docs.woocommerce.com/document/change-a-currency-symbol/](https://docs.woocommerce.com/document/change-a-currency-symbol/)
 * Use that snippet only and code DKK
 *  Thread Starter [osunaflorentz](https://wordpress.org/support/users/osunaflorentz/)
 * (@osunaflorentz)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-currency-missing/#post-9037868)
 * The thing is that, there isn’t any currency showing at all, no matter what i 
   choose from the Woocommerce menu

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Woocommerce currency missing’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [osunaflorentz](https://wordpress.org/support/users/osunaflorentz/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-currency-missing/#post-9037868)
 * Status: not resolved