This topic has been rehashed often, but is there a way to skip over an action containing live Stripe keys in debug mode? There’s an isn’t live conditional but no run only when application is live conditional.
the problem are the API key you are using and the price element in stripe. Both are not on the same version on Stripe. If you have set your API key in Stripe different from Dev and Live, but use the same Price item ID, it will work in live but not in dev. But if you remove the dev key (it mean you will always use the live one on both dev and live), it will work.
Isn’t live will return true in dev… so you can use Isn’t live is false (click on more to be able to select is false)
1 Like
Thanks, @Jici. I ended up setting isn’t live is “no” for the live products and that got rid of the error.
1 Like