Skip to content

Instantly share code, notes, and snippets.

@cameronjonesweb
Created November 25, 2019 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cameronjonesweb/e46d532fed866b194da25ec5f4adb3d8 to your computer and use it in GitHub Desktop.
Save cameronjonesweb/e46d532fed866b194da25ec5f4adb3d8 to your computer and use it in GitHub Desktop.
Round currency fields with Gravity Forms
add_filter( 'gform_currencies', 'cameronjonesweb_round_gravity_forms_currencies' );
function cameronjonesweb_round_gravity_forms_currencies( $currencies ) {
foreach ( $currencies as $key => $val ) {
$currencies[ $key ]['decimals'] = 0;
}
return $currencies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment