We use 1ShoppingCart to process payments. After a membership is purchased in Amember and payment made through 1SC, is it necessary to use as a thank you page the /amember/thanks.php or can I use my custom page? I am asking if this page is necessary to finish the sign-up process or if it is merely for displaying the receipt.
just to confirm? so it does not matter what the thank you page is - it should still give correct feedback from 1sc to amember?
ok, thanks, How do I change the Thank you page after Paypal payment? And, how do I change the thank you page after a free signup that does not even involve Paypal? (I'm not talking about template mods here, but redirecting to an actual file) thanks
You can modify thanks.php and place actual redirects here. Instead of PHP: $t->display("thanks.html"); Just place this code: PHP: switch($pm[paysys_id]){ case "free" : $url = '/url/for/free/signup'; break; case "paypal_r" : $url = '/url/for/paypal/signup'; break; default : $url = '/other';}header("Location: $url");