Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function em_mod_remove_decimal($formatted_price, $price, $currency, $format){
- if(!$format) $format = get_option('dbem_bookings_currency_format','@#');
- if(!$currency) $currency = get_option('dbem_bookings_currency');
- $formatted_price = str_replace('@', em_get_currency_symbol(true,$currency), $format);
- $formatted_price = str_replace('#', number_format( $price, 0, '', get_option('dbem_bookings_currency_thousands_sep',',') ), $formatted_price);
- return $formatted_price;
- }
- add_filter('em_get_currency_formatted','em_mod_remove_decimal',1,4);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement