Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/72c8ae748f41c0ebedcd595eab1525f8 to your computer and use it in GitHub Desktop.
Save stuartduff/72c8ae748f41c0ebedcd595eab1525f8 to your computer and use it in GitHub Desktop.
function remove_wc_stripe_from_checkout_page( $available_gateways ) {
unset( $available_gateways['stripe'] );
return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'remove_wc_stripe_from_checkout_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment