Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Created October 31, 2017 07:19
Show Gist options
  • Select an option

  • Save andrewlimaza/48c400b1e6e2da0a00c20e90a4457a37 to your computer and use it in GitHub Desktop.

Select an option

Save andrewlimaza/48c400b1e6e2da0a00c20e90a4457a37 to your computer and use it in GitHub Desktop.
Add stripe as a checkout option with PMPro.
function my_pmpro_valid_gateways( $gateways ) {
$gateways[] = "stripe";
return $gateways;
}
add_filter( "pmpro_valid_gateways", "my_pmpro_valid_gateways" );
function my_pmpro_checkout_boxes() {
?>
<a href="?level=<?php echo intval($_REQUEST['level']);?>&gateway=stripe">Checkout with Stripe</a>
<?php
}
add_action( "pmpro_checkout_boxes", "my_pmpro_checkout_boxes" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment