Skip to content

Instantly share code, notes, and snippets.

@InpsydeNiklas
Created May 28, 2021 19:06
Show Gist options
  • Save InpsydeNiklas/1b463312453db0906462a857fedc1683 to your computer and use it in GitHub Desktop.
Save InpsydeNiklas/1b463312453db0906462a857fedc1683 to your computer and use it in GitHub Desktop.
make PayPal Card Processing gateway default selection in the checkout
add_action( 'template_redirect', 'define_default_payment_gateway' );
function define_default_payment_gateway(){
if( is_checkout() && ! is_wc_endpoint_url() ) {
$default_payment_id = 'ppcp-credit-card-gateway';
WC()->session->set( 'chosen_payment_method', $default_payment_id );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment