Title: Currency
Last modified: May 11, 2020

---

# Currency

 *  Resolved [qshaheer](https://wordpress.org/support/users/qshaheer/)
 * (@qshaheer)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/)
 * How to Set Currency to change according to Country (Indian Rupees)

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

 *  Thread Starter [qshaheer](https://wordpress.org/support/users/qshaheer/)
 * (@qshaheer)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/#post-12814024)
 * does anybody know?
 *  [botwan](https://wordpress.org/support/users/botwan/)
 * (@botwan)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/#post-12815474)
 * I found the solution in [RestroPress documentation](https://docs.restropress.com/settings-options/).
 * If you want to include your Own Currency, then you can use the following codes
   and place it your active theme’s function.php file:
 *     ```
       function rpress_custom_currencies( $currencies ) {
       $currencies['₭'] = __( 'Lao Kip', 'restropress' );
       return $currencies;
       }
       add_filter('rpress_currencies', 'rpress_custom_currencies');
       ```
   
 * If you want to Remove the Decimal from your Currency, you can use this code in
   your active theme’s functions.php file:
 * `add_filter( ‘rpress_currency_decimal_count’, ‘rpress_remove_decimal’ ); function
   rpress_remove_decimal( $decimals ) { $decimals = 0; return $decimals; }`
 *  [playdiune](https://wordpress.org/support/users/playdiune/)
 * (@playdiune)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/#post-12817121)
 * Do not put in the theme functions because those changes will be lost when the
   theme is updated. Use a child theme or Create a MU Plugin and put those changes
   there.
    -  This reply was modified 6 years, 1 month ago by [playdiune](https://wordpress.org/support/users/playdiune/).
 *  Plugin Contributor [Kshirod Patel](https://wordpress.org/support/users/kshirod-patel/)
 * (@kshirod-patel)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/#post-12824786)
 * Hello,
 * [@qshaheer](https://wordpress.org/support/users/qshaheer/) hope you added your
   own currency by using this code in your active child theme functions.php file.
 * [@botwan](https://wordpress.org/support/users/botwan/) thank you for sharing 
   this code.
 * [@playdiune](https://wordpress.org/support/users/playdiune/) thank you for this
   suggestion.
 *  Thread Starter [qshaheer](https://wordpress.org/support/users/qshaheer/)
 * (@qshaheer)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/#post-12825376)
 * Thank you all

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

The topic ‘Currency’ is closed to new replies.

 * ![](https://ps.w.org/restropress/assets/icon-256x256.gif?rev=3216477)
 * [RestroPress - Online Food Ordering System](https://wordpress.org/plugins/restropress/)
 * [Support Threads](https://wordpress.org/support/plugin/restropress/)
 * [Active Topics](https://wordpress.org/support/plugin/restropress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/restropress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/restropress/reviews/)

 * 5 replies
 * 4 participants
 * Last reply from: [qshaheer](https://wordpress.org/support/users/qshaheer/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/currency-71/#post-12825376)
 * Status: resolved