Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Forked from strangerstudios/my_ipn_redirect.php
Last active December 10, 2019 09:30
Show Gist options
  • Save andrewlimaza/126d51296dbac02805a634fefd726418 to your computer and use it in GitHub Desktop.
Save andrewlimaza/126d51296dbac02805a634fefd726418 to your computer and use it in GitHub Desktop.
Redirect IPN URL Example
<?php
function my_ipn_redirect() {
if( ! empty($_REQUEST['option'] ) && $_REQUEST['option'] == 'rs_membership' && ! empty( $_REQUEST['paypalpayment'] ) && defined('PMPRO_DIR') ) {
require_once(PMPRO_DIR . "/services/ipnhandler.php");
exit;
}
}
add_action('init', 'my_ipn_redirect');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment