Change the currency symbol

Change the currency symbol

To change the currency symbol on the front-end you can use the hook apply_filters( ‘babe_currency_symbol’, $currency_symbol, $currency_code ):

add_filter( 'babe_currency_symbol', 'customtheme_babe_currency_symbol', 10, 2 );
function customtheme_babe_currency_symbol( $currency_symbol, $currency_code ){
     if ( $currency_code === 'USD' ){
         $currency_symbol = 'USD';
     }
     return $currency_symbol;
}

Cookies

This site uses cookies to enhance your user experience and analyse traffic to improve this website. By clicking any link on this page you are giving your consent for us to set cookies. Please, see our Privacy Policy for additional information.
Scroll to top