Skip to main content

Quick and easy example of how to disable payment gateways based on the Country in WooCommerce.  Currently there isn’t an easy way to do this through the WooCommerce settings so you’ll need to open up your code editor.

Navigate to your theme folder at /wp-content/themes/themename .  Hopefully you’re using a child theme so jump into that theme’s folder and look for your functions.php file.  Scroll down to the bottom and drop in this snippet.

If you’re using WooCommerce 3.0 or newer:

function payment_gateway_disable_country( $available_gateways ) {
global $woocommerce;
if ( is_admin() ) return;
if ( isset( $available_gateways['stripe'] ) && $woocommerce->customer->get_billing_country() <> 'US' ) {
unset( $available_gateways['stripe'] );
} 
return $available_gateways;
}
 
add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_country' );

If you’re using WooCommerce 2.6 or older:

function payment_gateway_disable_country( $available_gateways ) {
global $woocommerce;
if ( isset( $available_gateways['stripe'] ) && $woocommerce->customer->get_country() <> 'US' ) {
unset( $available_gateways['stripe'] );
} 
return $available_gateways;
}
 
add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_country' );

In this example I’m disabling my Stripe credit card payment gateway if the country is not equal to the United States (US).  In doing this anyone outside of the United States (US) when checking out and entering their billing/shipping address will have to pay with my other payment gateway of PayPal.

You can enter any of your gateways here to disable by going into your WordPress admin area -> WooCommerce -> Settings -> Checkout and viewing the gatewayID.

Disable Payment Gateways Based on Country in WooCommerce

You can look up the country code here.  Once you’re ready save your functions.php file and you’re all set.

View the Prodjex Web Development form discussion on how to Disable Payment Gateways Based on Country in WooCommerce.

6 Comments

Leave a Reply