Forums
Home / Plugin: Affiliates / Add currency INR
(@educationguideonline)
6 years, 6 months ago
How to add currency INR??
(@gtsiokos)
Hi,
Please add the following snippet in functions.php file of your theme( preferably child theme) :
add_filter( 'affiliates_supported_currencies', 'affiliates_supported_currencies_inr' ); function affiliates_supported_currencies_inr( $currencies ) { $currencies[] = 'INR'; return $currencies; }
Kind regards, George