Skip to content

Instantly share code, notes, and snippets.

@Frekisunr
Forked from kloon/gist:3972435
Created July 28, 2016 10:31
Show Gist options
  • Save Frekisunr/f877d3b0cd63114b4a1efc901ea3eca7 to your computer and use it in GitHub Desktop.
Save Frekisunr/f877d3b0cd63114b4a1efc901ea3eca7 to your computer and use it in GitHub Desktop.
WooCommerce disable payment gateways based on customer country
// Disable gateway based on country
function payment_gateway_disable_country( $available_gateways ) {
global $woocommerce;
if ( isset( $available_gateways['ccavenue'] ) && $woocommerce->customer->get_country() <> 'IN' ) {
unset( $available_gateways['ccavenue'] );
} else if ( isset( $available_gateways['paypal'] ) && $woocommerce->customer->get_country() == 'IN' ) {
unset( $available_gateways['paypal'] );
}
return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_country' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment