• Resolved hassaansyed88

    (@hassaansyed88)


    Hello, a great plugin I must say, just be needing a quick help in changing ?.? to AED for UAE. Please could you help any solution for this?

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

Viewing 1 replies (of 1 total)
  • Thread Starter hassaansyed88

    (@hassaansyed88)

    Never mind, figured it out. Changed it with:

    /**
     * Custom currency and currency symbol
     */
    add_filter( 'woocommerce_currencies', 'add_my_currency' );
    
    function add_my_currency( $currencies ) {
         $currencies['ABC'] = __( 'Currency name', 'woocommerce' );
         return $currencies;
    }
    
    add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2);
    
    function add_my_currency_symbol( $currency_symbol, $currency ) {
         switch( $currency ) {
              case 'AED': $currency_symbol = 'AED'; break;
         }
         return $currency_symbol;
    }

    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘UAE currency unit to AED’ is closed to new replies.