• Resolved solarharvestenergy

    (@solarharvestenergy)


    We have a default $ currency, but we do accept INR for Indian customer through location-based customer:

    I am getting following error

    Gateway disabled: This plugin does not support your store currency. UPI Payment only supports Indian Currency. Contact developer for support.

    https://solarharvestenergy.com/

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor Sayan Datta

    (@infosatech)

    Hi @solarharvestenergy

    To add INR support, you can add this code to theme’s functions.php file:

    add_filter( 'upiwc_supported_currencies', function( $currencies ) {
        $currencies[] = 'USD'; // your primary currency.
        return $currencies; // change it 
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Gateway disabled: This plugin does not support your store currency.’ is closed to new replies.