Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bernattorras/5c283ff266638030b5c902a140d07384 to your computer and use it in GitHub Desktop.
Save bernattorras/5c283ff266638030b5c902a140d07384 to your computer and use it in GitHub Desktop.
Function to execute some code when a subscription is paid using Stripe gateway
<?php
/**
* Function to execute some code when a subscription is paid using Stripe gateway
**/
add_action('woocommerce_scheduled_subscription_payment_stripe', 'renewal_notifier_stripe', 11, 2);
function renewal_notifier_stripe($total, $renewal_order){
// Your custom functionality
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment