We don’t get enough to traffic in sale that we can reliably test those things, and at this point, the site is kind of ready for the heavy season. Updating the plugin is an unknown we can’t really afford, unless we have confirmation that at least issue number 1 is fixed. Issue number 2 we circumvented for now by removing the save card checkbox. I suppose I could download the code and check if you added support for ‘requires_action’.
Which I just did. So, I was mistaken, and 1.3.3 does have support for ‘requires_action’, but it’s only checked like this while processing payment.
if( $this->sca_enabled ) {
// Checked in here
}
So I assume that if we enable the option for 3D Secure & SCA check on the backend of the plugin, that it will fix that, and when it’s turned off like right now, and stripe requires it, the order will fail, like it did, because no code catches that status. Now… I could turn that option on, but what exactly does it do? I can see there’s a lot of code in there, and it changes the flow of the purchase if 3D Secure / SCA is needed.






