Skip to content

Instantly share code, notes, and snippets.

@rubelmiah
Created January 19, 2023 12:33
Show Gist options
  • Save rubelmiah/c1e4bf1ae0b34846af849d4c682455e6 to your computer and use it in GitHub Desktop.
Save rubelmiah/c1e4bf1ae0b34846af849d4c682455e6 to your computer and use it in GitHub Desktop.
Remove zero cents ".00" from Easy Digital Downloads.
<?php
function rm_edd_format_amount_decimals( $decimals, $amount ) {
if ( floor( $amount ) == $amount )
$decimals = 0;
return $decimals;
}
add_filter( 'edd_format_amount_decimals', 'rm_edd_format_amount_decimals', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment