Skip to content

Instantly share code, notes, and snippets.

@messica
Created April 25, 2014 14:23
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 messica/11291332 to your computer and use it in GitHub Desktop.
Save messica/11291332 to your computer and use it in GitHub Desktop.
Cancel subscription on billing failure
<?php
// Cancel membership account on billing failure
function my_pmpro_subscription_payment_failed($old_order) {
pmpro_changeMembershipLevel(0, $old_order->user_id);
}
add_action('pmpro_subscription_payment_failed', 'my_pmpro_subscription_payment_failed');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment