Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created December 8, 2014 00:00
Show Gist options
  • Save amdrew/021a8df24353a6a3eb38 to your computer and use it in GitHub Desktop.
Save amdrew/021a8df24353a6a3eb38 to your computer and use it in GitHub Desktop.
Easy Digital Downloads - Format the RUB currency so it's shows as 1000 RUB rather than 1,000.00 RUB
<?php
function sumobi_edd_format_rub_currency( $formatted, $amount, $decimals, $decimal_sep, $thousands_sep ) {
$decimals = 0;
$thousands_sep = '';
$formatted = number_format( $amount, $decimals, $decimal_sep, $thousands_sep );
return $formatted;
}
add_filter( 'edd_format_amount', 'sumobi_edd_format_rub_currency', 10, 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment