• Resolved konfyt

    (@konfyt)


    How do I change the currency setting to a currency not listed in the dropdown list? I need to add South African ZAR.

Viewing 1 replies (of 1 total)
  • You can add any additional currency like below.
    Use appropriate currency related details like name, symbol, true symbol.
    Refer to https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/ add this code.

    function my_em_get_currencies( $currencies ){
        $currency_id = 'XXX';
        if( empty($currencies->names[$currency_id]) ) {
            $currencies->names[$currency_id] = 'xxxx';
            $currencies->symbols[$currency_id] = 'CCCC';
            $currencies->true_symbols[$currency_id] = 'ZZZZ';
        }
        return $currencies;
    }
    add_filter('em_get_currencies', 'my_em_get_currencies');
Viewing 1 replies (of 1 total)
  • The topic ‘Currency not listed’ is closed to new replies.