Created
December 8, 2014 00:00
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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