Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created October 11, 2013 22:59
Show Gist options
  • Save amdrew/6943311 to your computer and use it in GitHub Desktop.
Save amdrew/6943311 to your computer and use it in GitHub Desktop.
Format the amount in Easy Digital Downloads to remove the decimal points
<?php
function my_child_theme_edd_format_amount_decimals( $decimals, $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