Viewing 3 replies - 1 through 3 (of 3 total)
  • Hiya,

    EM currently limits this to PayPal accepted currencies, but you can add any currency with a few lines of code.

    function my_em_add_currencies($currencies){
        $currencies->names['RUB'] = 'RUB - Russian Roubles';
        $currencies->symbols['RUB'] = 'RUB';
        $currencies->true_symbols['RUB'] = 'RUB';
        return $currencies;
    }
    add_filter('em_get_currencies','my_em_add_currencies');

    This is for Russian Roubles, but if you edit RUB to NGN and make the value of true_symbols your symbol it’ll work.

    Simply add that code to your functions.php

    Phil

    Thread Starter protechonline

    (@protechonline)

    Thank you Phil, where in the folder is this located so I can change it.

    Plugin Support angelo_nwl

    (@angelo_nwl)

    you can paste the snippet above in your theme functions.php and then change RUB to NGN

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change of Currency Symbol’ is closed to new replies.