Adding paid members Answered
hey folks,
your site looks very promising. however, I can't manage to add a paid member.
first of all, I haven't subscribed any of your "billed" plans. I guess this might the sole reason. here where I struggle:
I added a paid plan but I can't add a member to that plan which I am planning to use Stripe's developer account and fake cards.
- I can't select a paid plan when I am using "Add Member" on your dashboard.
- I can't create a user for a paid plan via Zapier because it returns "[400] This plan needs valid payment information. (code: payment/payment-required)"
- I can't create a user for a paid plan by using "@memberstack/dom" and stripe libraries because I can't add a test card as a "paymentMethodId". I tried "signupMemberEmailPassword" which I had create free members succesfully. I am not a developer, so I might have had a mistake. I tried lot's of scenarios though.
-
await stripe.paymentMethods
.create({
type: "card",
card: {
number: "4242424242424242",
exp_month: 9,
exp_year: 2023,
cvc: "123"
}
})
any suggestions?
thanks in advance,
bo
Comments
1 comment
Hey Bo,
Great questions. Paid plans are only created using a data attribute for a signup flow following this article. If your website is in test mode then you can input the test card info and get going!
You can also find pre-made signup components here.
Please sign in to leave a comment.