Title: Currency
Last modified: August 24, 2016

---

# Currency

 *  [rissol](https://wordpress.org/support/users/rissol/)
 * (@rissol)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/currency-25/)
 * I want to setup my default currency to CVE, currency of the Republic of Cape 
   Verde.
 * I will not use any payment gateaway all the payments will be bank transfer. How
   can I do this?
 * [https://wordpress.org/plugins/woocommerce/](https://wordpress.org/plugins/woocommerce/)

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

 *  [terrytsang](https://wordpress.org/support/users/terrytsang/)
 * (@terrytsang)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/currency-25/#post-6008325)
 * Hi [@rissol](https://wordpress.org/support/users/rissol/), you can below code
   into your theme functions.php:
 *     ```
       add_filter( 'woocommerce_currencies', 'add_custom_currency' );
   
       function add_custom_currency( $currencies ) {
         $currencies["CVE"] = 'Cape Verdean Escudo';
         return $currencies;
       }
   
       add_filter('woocommerce_currency_symbol', 'add_custom_currency_symbol', 10, 2);
   
       function add_custom_currency_symbol( $currency_symbol, $currency ) {
         switch( $currency ) {
           case 'CVE': $currency_symbol = '$'; break;
         }
         return $currency_symbol;
       }
       ```
   
 *  Thread Starter [rissol](https://wordpress.org/support/users/rissol/)
 * (@rissol)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/currency-25/#post-6008334)
 * thanks Terry I will do that

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

The topic ‘Currency’ 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/)

## Tags

 * [currency](https://wordpress.org/support/topic-tag/currency/)

 * 2 replies
 * 2 participants
 * Last reply from: [rissol](https://wordpress.org/support/users/rissol/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/currency-25/#post-6008334)
 * Status: not resolved