Your cart is currently empty!
INR is not available in currencies
—
by
INR (Indian National Rupee) is not available in currencies. How can it be made available?
Posted in Affiliates Pro
—
by
INR (Indian National Rupee) is not available in currencies. How can it be made available?
Comments
One response to “INR is not available in currencies”
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