Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function my_em_formatter($formatted_price, $price, $currency, $format){
- $formatted_price = '';
- 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, 4, get_option('dbem_bookings_currency_decimal_point','.'), get_option('dbem_bookings_currency_thousands_sep',',') ), $formatted_price);
- return $formatted_price;
- }
- add_filter('em_get_currency_formatted','my_em_formatter',100,4);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement