Skip to content

Instantly share code, notes, and snippets.

@aliciaiceland
Last active April 11, 2017 06:25
Show Gist options
  • Save aliciaiceland/79cfe51aed793329dcc0446c500cd09c to your computer and use it in GitHub Desktop.
Save aliciaiceland/79cfe51aed793329dcc0446c500cd09c to your computer and use it in GitHub Desktop.
Disable payment gateway for shipping method
function disable_payment_gateways( $gateways ) {
$chosen_shipping_rates = WC()->session->get( 'chosen_shipping_methods' );
// if 'local delivery' is chosen as shipping rate
if ( in_array( 'local_delivery', $chosen_shipping_rates ) ) :
// Removing bank transfer payment gateway, you can unset other gateways too.
unset( $gateways['bacs'] );
endif;
return $gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'disable_payment_gateways' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment