I have a membership site and I want to have multiple signup forms, one for a 7 day trial period and another for straight subscription. My question is how do I have multiple signup.html forms and how do I reference the one I want? Thanks Freak
Simplest method: You can use negative price id groups, and call them using /amember/signup.php?price_group=-44 David
Dave, Thanks for the reply, but how do I reference the different signup.html files? Do I need to name them something different or put them in different places? Each signup.html will actually have different graphics on it. Thanks
Then you'll need to copy signup.php and signup.html to new files signup2.php and signup2.html, and change references in signup.2.php thatcall signup.html to signup2.html. David