ShizukaDonaghue / luve

LUVE is a full-stack web application built with Django. It's an online store for safe sunblock.
https://luve.herokuapp.com/
0 stars 1 forks source link

BUG: Stripe Payments Failure #86

Closed ShizukaDonaghue closed 12 months ago

ShizukaDonaghue commented 12 months ago

Strip payment fails due to the payment method not being provided.

ShizukaDonaghue commented 12 months ago

This issue resulted from jQuery plug-in validation that was added to validate the checkout form. It was firing the form submission before Stripe could finish processing payment. Once the validation was removed, payments were successful. The final solution applied was to update the jQuery validation to call the checkout function instead of form.submit function, which resolved the issue.