PDA

View Full Version : Link to paid subscription...


nocturnix
12-07-2008, 08:59 AM
I searched around and mostly it seems this is not as simple as http:www.yoursite.com/payments.php?do=subscription1 although I wish it were.

I have developed a custom subscriptions page that looks nice has images ready to link to the payment page for each subscription. Unfortunately now I come to find out that isnt currently possible. You can only link to the page listing the possible subscriptions then the user must choose. Since my page has them choose already, that is redundant and they might get confused or chose something else.

How tough would it be to build in a handler or something that could take the link suggested above? http:www.yoursite.com/payments.php?do=subscription1 and redirect them to the next step in the payment process?

ForumsMods
12-07-2008, 12:18 PM
You must use a form with a image.

nocturnix
12-07-2008, 01:06 PM
Thats what I was thinking too. I can mock the form almost exactly, but Im not sure how to generate this "securitytoken" hidden field. Anyone know if there is a variable I can use for this in a template?

ForumsMods
12-07-2008, 01:14 PM
for security token use this in value:
$bbuserinfo[securitytoken]
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

nocturnix
12-07-2008, 01:23 PM
Awesome! Thanks alot gasper!