R
R
Roman2020-11-03 11:20:03
WordPress
Roman, 2020-11-03 11:20:03

How to make a transfer for woocommerce currency?

Hello. Made a substitution of the currency symbol "Ruble", the code is below. Is there any way to make a translation for it? To display "rub" in the English version?

add_filter('woocommerce_currency_symbol', 'custom_symbol_to_bukvi', 9999, 2);
 
function custom_symbol_to_bukvi( $valyuta_symbol, $valyuta_code ) {
  if( $valyuta_code === 'UAH' ) {
    return 'грн.';
  }
  if( $valyuta_code === 'RUB' ) {
    return 'руб.';
  }
  return $valyuta_symbol;
}

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question