ricardometring
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] V5.6.0 issue with woocommerce pre-ordersThis shall be fixed in the next release. Stay tuned ??.
Displaying all the credit card logos at once used to cause a misalignment issue for most templates, unfortunately.
We’re working on a fix to display a static and generic credit card icon instead now, so this should be more consistent with other payment gateways, which show just one icon.
The brand logo will still be visible once the credit card number is entered, and if the credit card is unsupported, users will be notified, so this shouldn’t cause conversion issues.
Hey @mrkawaii, thanks for reporting the issue.
We should have a patch release by the end of the day today, or early tomorrow with a static credit card icon instead of the supported cards rotation.
If you’d like a way around this sooner, you can also rollback to version 5.5.0 by downloading it from GitHub: https://github.com/woocommerce/woocommerce-gateway-stripe/releases/download/5.5.0/woocommerce-gateway-stripe.zip.
Cheers
Forum: Plugins
In reply to: [Terminal for Stripe and WooCommerce] Fatal error with Stripe 5.6.0Perhaps you can initialize Terminal with a lower priority than Stripe, so that it will load after Stripe, and that way you don’t need to manually include Stripe’s files in order to use it.
The Terminal for Stripe and WooCommerce plugin has multiple hardcoded
require_once
on the Stripe Gateway plugin files. It’s relying on Stripe’s folder structure, so the error is actually coming from the Terminal plugin, not Stripe.The way around this for now is to either disable Terminal for Stripe, or rollback to Stripe 5.5.0.
We will try to contact the Terminal developers so they can fix their dependencies.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] V5.6.0 issue with woocommerce pre-ordersI tried to reproduce this issue with no success.
@bbioon Can you please provide detailed steps on how to reproduce this error?
Hey @stevenhirst and @tomguk, can you please provide detailed steps on how to reproduce this error?
Can this be reproducible in the free version of Yith Subscriptions? How’s the product configured in WooCommerce? I’m having trouble trying to reproduce this issue.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe files on Product PageHey @impulsion,
It’s possible to disable payment request buttons from the product page from settings now. Navigate to WooCommerce > Settings > Payments > Stripe and remove “Product” from “Payment Request Button Locations”.
- This reply was modified 3 years, 6 months ago by ricardometring.
@foerster Do you happen to know if your website is behind some load balancer?
If you’re using a load balancer, a quick fix might be to add this code to your wp-config.php, above the require_once call:
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') $_SERVER['HTTPS'] = 'on';
As per https://developer.www.ads-software.com/reference/functions/is_ssl/#more-information.
Please let us know if that works. We will look into the issue and try to add support for load balancer websites if that’s the case.
- This reply was modified 3 years, 9 months ago by ricardometring.