Title: Adding New Currency
Last modified: August 31, 2016

---

# Adding New Currency

 *  [kipkem](https://wordpress.org/support/users/kipkem/)
 * (@kipkem)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/adding-new-currency-1/)
 * In case you want to add a currency which is missing in the plugin.
 * Insert the following code in your theme’s function.php file, then change ABC 
   to your currency symbol and Currency name to the name of your currency:
 * add_filter( ‘wps_deals_currency_data’, ‘add_my_currency’ );
    function add_my_currency(
   $currencies ) { $currencies[‘ABC’] = __( ‘Currency name’, ‘wps_deals’ ); return
   $currencies; }
 * add_filter(‘wps_deals_currency_data’, ‘add_my_currency_symbol’, 10, 2);
    function
   add_my_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) {
   case ‘ABC’: $currency_symbol = ‘$’; break; } return $currency_symbol; }
 * [https://wordpress.org/plugins/deals-engine/](https://wordpress.org/plugins/deals-engine/)

The topic ‘Adding New Currency’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/deals-engine_725266.svg)
 * [Social Deals Engine](https://wordpress.org/plugins/deals-engine/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/deals-engine/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/deals-engine/)
 * [Active Topics](https://wordpress.org/support/plugin/deals-engine/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/deals-engine/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/deals-engine/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [kipkem](https://wordpress.org/support/users/kipkem/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/adding-new-currency-1/)
 * Status: not resolved