0

i want when i change the language to change my currency symbol. For example, to switch from dollar to euro but without changing numbers ...

Tnx

Mladja
  • 21
  • 2

1 Answers1

1

If you haven't already solved this you may look at this code, provide by WPML.

add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);

function change_existing_currency_symbol( $currency_symbol, $currency ) {
    switch( $currency ) {
        case 'AED':           
          // if(ICL_LANGUAGE_CODE=='en'){
              $currency_symbol = 'AED'; 
           //}else{
             // $currency_symbol = 'د.إ';  
           //}
        break;            
    }
    return $currency_symbol;
}
7uc1f3r
  • 28,449
  • 17
  • 32
  • 50
Victor
  • 21
  • 3