• Hi all expert. I can’t change UAE currency language. I need to replace AED. Please Suggest me how i can make it

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    If you want to change/replace currency follow the below steps,
    Log into your admin dashboard > Dashboard Main Menu > WooCommerce > Settings > Select "General" tab > Currency options > Change "Currency" > Save changes.

    Thanks!

    Hi!

    I think this may work for you. Copy this code in your functions.php file.

    
    add_filter('woocommerce_currency_symbol', 'my_currency_symbol', 10, 2);
      
    function my_currency_symbol( $currency_symbol, $currency ) {
         switch( $currency ) {
              case '?.?': $currency_symbol = 'AED'; 
    	  break;
         }
         return $currency_symbol;
    }
    
    • This reply was modified 4 years, 10 months ago by Priya Gupta.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘woocommerce currency’ is closed to new replies.