Skip to content

Instantly share code, notes, and snippets.

@lmartins
Created November 21, 2014 16:19
Show Gist options
  • Save lmartins/127b693312b30bed9d7f to your computer and use it in GitHub Desktop.
Save lmartins/127b693312b30bed9d7f to your computer and use it in GitHub Desktop.
Disable payment method for certain countries
/**
* Desabilita pagamento por Transferência para clientes não PT
*/
function mw_payment_gateway_disable_country( $available_gateways )
{
global $woocommerce;
if ( isset( $available_gateways['bacs'] ) && $woocommerce->customer->get_country() !== 'PT' ) {
unset( $available_gateways['bacs'] );
}
return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'mw_payment_gateway_disable_country' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment