Skip to content

Instantly share code, notes, and snippets.

@amdrew
Last active December 25, 2015 09:49
Show Gist options
  • Save amdrew/6956842 to your computer and use it in GitHub Desktop.
Save amdrew/6956842 to your computer and use it in GitHub Desktop.
Format the amount in Easy Digital Downloads to remove the decimal points, but only if the number is a whole number.
<?php
function my_child_theme_edd_format_amount_decimals( $decimals, $amount ) {
if( floor( $amount ) == $amount )
$decimals = 0;
return $decimals;
}
add_filter( 'edd_format_amount_decimals', 'my_child_theme_edd_format_amount_decimals', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment