[QUOTE=BigB;1405258][QUOTE=Gozzandes;1405246]

Quote Originally Posted by BigB View Post

I have noticed that on the two test orders I have tried that the payments show as "Pending"... I'm offering digital download products and there is a message that states "NOTE: Downloads are not available until payment has been confirmed".
I would think that payments would be "confirmed" while using test mode but, I don't know for certain. Perhaps there is a setting I need to configure or maybe the Debug Log is pointing to this issue? Any insight or suggestions is greatly appreciated, thanks
Following 2 files should be changed
www\includes\modules\pages\checkout_one\jscript_stripe.php
\www\includes\modules\pages\checkout_payment\jscript_stripe.php

from
PHP Code:
<?php 
if ( isset($_SESSION['paymentIntent'])){
    
$_SESSION['paymentIntent'] = '';
  }
?>
to
PHP Code:
<?php 
    $_SESSION
['paymentIntent'] = '';
?>
could you check it and reply?