Skip to content

Instantly share code, notes, and snippets.

@femiyb
Created October 8, 2019 06:34
Show Gist options
  • Save femiyb/06dbae0eb2b83b6fb05f41c32835923c to your computer and use it in GitHub Desktop.
Save femiyb/06dbae0eb2b83b6fb05f41c32835923c to your computer and use it in GitHub Desktop.
Redirect After Checkout
<?php
function my_pmpro_confirmation_url($rurl, $user_id, $pmpro_level)
{
$rurl = 'http://google.com'; //change this URL
return $rurl;
}
add_filter('pmpro_confirmation_url', 'my_pmpro_confirmation_url', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment