• Resolved industrialtex

    (@industrialtex)


    Hi,

    The Stripe Payment Gateway is now officially available in India. Request you to kindly make changes to the official plugin to allow usage on Indian WooCommerce Stores.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Ross V. a11n

    (@rossviviano)

    Automattic Happiness Engineer

    Hi there,

    Stripe 4.5.1 adds a country check and merchants from countries that are in Stripe’s Preview program will see a notice in their dashboard.

    Please add the following snippet to your site to add India to the list of supported countries after installing the Stripe extension:

    
    function wc_stripe_preview_supported_countries( $countries ) {
    	if ( ! in_array( 'IN', $countries ) ) {
    		$countries[] = 'IN';
    	}
    
    	return $countries;
    }
    
    add_filter( 'wc_stripe_supported_countries', 'wc_stripe_preview_supported_countries' );
    
    

    You can use the following plugin to do that: https://www.ads-software.com/plugins/code-snippets/

    Best,

    Ross

    Thread Starter industrialtex

    (@industrialtex)

    Thanks. The issue is resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Available in India’ is closed to new replies.