Created
October 29, 2024 09:31
-
-
Save pramodjodhani/34005f6d798cf8cd0ab6952fff9a9406 to your computer and use it in GitHub Desktop.
Add CNY currency to Gravity Form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( 'gform_currencies', 'idea_mcg_add_cny_currency' ); | |
| function idea_mcg_add_cny_currency( $currencies ) { | |
| $currencies['CNY'] = array( | |
| 'name' => 'Chinese Yuan', | |
| 'code' => 'CNY', | |
| 'symbol_left' => 'CNY ', | |
| 'symbol_right' => '', | |
| 'symbol_padding' => ' ', | |
| 'thousand_separator' => ',', | |
| 'decimal_separator' => '.', | |
| 'decimals' => 2, | |
| ); | |
| return $currencies; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment