Re: Stripe.com payment integration module
I'm having an issue when customers use the reward points or a gift certificate to check out. For some reason, these values show up on the page but do NOT feed to Stripe, so they're charged full price. However, the points are deducted from their account, and the gift card is marked as spent. But they're also charged for the full amount.
Has this happened to anyone else?
Re: Stripe.com payment integration module
Quote:
Originally Posted by
jmsnyder23
I'm having an issue when customers use the reward points or a gift certificate to check out. For some reason, these values show up on the page but do NOT feed to Stripe, so they're charged full price. However, the points are deducted from their account, and the gift card is marked as spent. But they're also charged for the full amount.
Has this happened to anyone else?
Have you updated to the latest version of the plugin as I think this has been fixed.
Re: Stripe.com payment integration module
Quote:
Originally Posted by
jmsnyder23
I'm having an issue when customers use the reward points or a gift certificate to check out. For some reason, these values show up on the page but do NOT feed to Stripe, so they're charged full price. However, the points are deducted from their account, and the gift card is marked as spent. But they're also charged for the full amount.
Has this happened to anyone else?
Also what version of Zen Cart and PHP are you running
Re: Stripe.com payment integration module
Quote:
Originally Posted by
jmsnyder23
I'm having an issue when customers use the reward points or a gift certificate to check out. For some reason, these values show up on the page but do NOT feed to Stripe, so they're charged full price. However, the points are deducted from their account, and the gift card is marked as spent. But they're also charged for the full amount.
Has this happened to anyone else?
Ver 2.0.4 and later of this module should have resolved this issue.
What is your module version?
Re: Stripe.com payment integration module
just installed this and credit card payments work fine but when i try to use klarna or clearpay it goes straight to the order success page without visiting either payment provider and in stripe dashboard i see a failure that mentions i must specify a return url for klarna/clearpay. Did I miss a step that the dev who helped me get it loading has also not spotted or maybe a crucial file edit somewhere that's being missed by a bad merge?
Re: Stripe.com payment integration module
Quote:
Originally Posted by
flappingfish
just installed this and credit card payments work fine but when i try to use klarna or clearpay it goes straight to the order success page without visiting either payment provider and in stripe dashboard i see a failure that mentions i must specify a return url for klarna/clearpay. Did I miss a step that the dev who helped me get it loading has also not spotted or maybe a crucial file edit somewhere that's being missed by a bad merge?
Following file should be fixed.
\www\includes\checkout.js
It's rice harvesting season now and I can't do anything.
Re: Stripe.com payment integration module
i see the following section but no instructions on how it should be edited, is this what you are refering too?
Code:
const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
// Make sure to change this to your payment completion page
return_url: confirmationURL,
},
});
Re: Stripe.com payment integration module
Quote:
Originally Posted by
flappingfish
i see the following section but no instructions on how it should be edited, is this what you are refering too?
Code:
const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
// Make sure to change this to your payment completion page
return_url: confirmationURL,
},
});
whoops, looking at older checout.js on another site there, is this a known fault with module or just something site specific? i have quite a few modules that required a file merge or 2
Re: Stripe.com payment integration module
Quote:
Originally Posted by
flappingfish
whoops, looking at older checout.js on another site there, is this a known fault with module or just something site specific? i have quite a few modules that required a file merge or 2
\includes\checkout.js
Cange the line 75 of this file from
document.getElementById('checkoutConfirmDefaultHeading').textContent = PaymentSuccess;
document.getElementById('payment-form').style.visibility = 'hidden';
document.getElementById('submit').style.visibility = 'hidden';
document.getElementById("btn_submit").click();
to
document.getElementById('checkoutConfirmDefaultHeading').textContent = 'Payment succeeded!.';
Delete the line 76, 77, 78.
*After taking action, please reply with the results.
Re: Stripe.com payment integration module
I don't actually use this payment module.
Created just for fun. As a result, problem discovery is delayed.
sorry.
Stripe module ver2.1.3 has already been uploaded.
Please wait until it is published.