RESOLVED
What I had to do was recreate the paypal buttons from the “s2Member –> PayPal Buttons” options menu AFTER I changed the settings to use a paypal-sandbox Seller account (credentials created within paypal sandbox).
Then, when I tested the button I was getting missing field errors from PayPal. This appeared to occur because either WordPress or one of my plugins was messing with the generated button code. So, what I did was install the phpExec mod so that I could use PHP in my pages.
Next, I created a new page using the php include tags:
[php]
include(‘./private_directory/subscription/new_user_signup.php’);
[/php]
Lastly, I created the page: ‘new_user_signup.php’ (rename to your liking..) in which I put the newly generated paypal-sandbox button code (from the s2member paypal button page).
Finally, the effing thing worked… now I can test shiz out. Hope this helps others…
-
This reply was modified 4 years, 3 months ago by
Dan Martinez.