Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Created October 29, 2024 09:31
Show Gist options
  • Select an option

  • Save pramodjodhani/34005f6d798cf8cd0ab6952fff9a9406 to your computer and use it in GitHub Desktop.

Select an option

Save pramodjodhani/34005f6d798cf8cd0ab6952fff9a9406 to your computer and use it in GitHub Desktop.
Add CNY currency to Gravity Form
<?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