INR is not available in currencies

INR (Indian National Rupee) is not available in currencies. How can it be made available?

Posted in

Comments

One response to “INR is not available in currencies”

  1. Hi,

    You need to use this filter in order to add INR in the supported currencies for Affiliates > User Registration :
    add_filter( 'affiliates_supported_currencies', 'example_affiliates_supported_currencies' );
    function example_affiliates_supported_currencies( $currencies ) {
    $currencies[] = 'INR';
    return $currencies;
    }

    The filter should be placed in your functions.php file of your active theme.

    Kind regards,
    George

Share