Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hirejordansmith/dccdfb42940f72b8f16f36943fd56683 to your computer and use it in GitHub Desktop.
Save hirejordansmith/dccdfb42940f72b8f16f36943fd56683 to your computer and use it in GitHub Desktop.
GF Currencies with three decimals
<?php
add_filter( 'gform_currencies', function( $currencies ) {
$currencies['EUR']['decimals'] = 3;
return $currencies;
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment