Viewing 1 replies (of 1 total)
  • 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

Viewing 1 replies (of 1 total)
  • The topic ‘Add currency INR’ is closed to new replies.