No currency

Hi,

I open and could not find RUB (Russian Rubbles). Is It possible to add?

wp-admin/admin.php?page=affiliates-admin-user-registration

/Denis


Comments

One response to “No currency”

  1. Hi Denis,

    You can use the filter below as described here, to add another currency
    add_filter( 'affiliates_supported_currencies', 'affiliates_supported_currencies_rub' );

    function affiliates_supported_currencies_idr( $currencies ) {
    $currencies[] = 'RUB';
    return $currencies;
    }

    If you put this filter in your child theme’s functions.php file your currency will be added.

    Kind regards,
    George

Share