Stop sending submitting if the user exit from the wix payment without enter his payment method

Hi

I’m thanks so much for responding the previous forum of this

And I test it and it’s work and also I have add more than coupon Code and all it’s work

That is not problem

The problem is and it’s a disaster problem is when I think about what happened if I exit the wix payment without enter my payment method

When I test it I found that the submitting is complete without enter any payment method

So I want to know how can I stop submitting if he/she didn’t enter his payment method

Thanks
Eyad

Hi Eyad!

You can think of implementing some kind of a check using conditionals .

for example:

if (userdidnotenterdetailscondition) {
  //can be returning user to a previous page etc;
} else {
  //can be proceeding with payment option;
}

Give it a try :wink:

I tried to make the code but I found that is so hard to make this