Thêm VND vào Gravityforms

Thêm vào functions.php

  1. add_filter( 'gform_currencies', 'add_vnd_currency' );
  2. function add_vnd_currency( $currencies ) {
  3. $currencies['VND'] = array(
  4. 'name' => __( 'Vietnamese Dong', 'gravityforms' ),
  5. 'symbol_left' => '',
  6. 'symbol_right' => 'VND',
  7. 'symbol_padding' => ' ',
  8. 'thousand_separator' => ',',
  9. 'decimal_separator' => '.',
  10. 'decimals' => 0
  11. );
  12.  
  13. return $currencies;
  14. }

Leave a Reply

You must be logged in to post a comment.