Return url is not json encoded.
So script cannot read the PHP return URL
\www\includes\modules\payment\stripepay\create.php line 63
add following code
and rewrite fromPHP Code:
$jason_confirmationULR = json_encode($confirmationURL);
toCode:var confirmationURL = JSON.parse('<?php echo $confirmationURL; ?>');
if it's OK.Code:var confirmationURL = JSON.parse('<?php echo $jason_confirmationULR; ?>');
could you reply the post?
Bookmarks