cagsan
Forum Replies Created
-
Forum: Plugins
In reply to: [Airwallex Online Payments Gateway] Make 3DS optional for Google PayYes, can you please make “3ds check” optional ?
Forum: Plugins
In reply to: [Airwallex Online Payments Gateway] Make 3DS optional for Google PayI have found it in;
includes/Gateways/cards.php
https://i.snipboard.io/qCUjml.jpg
Set it to “yes” but still it asks cvv verififcation.Forum: Plugins
In reply to: [Airwallex Online Payments Gateway] Make 3DS optional for Google PayHi @ssatria ,
Checked there but couldn’t see anything related to that.
Forum: Plugins
In reply to: [Airwallex Online Payments Gateway] Big performance issueThis is the debug.log
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| null
[2026-01-18 21:25:11] Airwallex\Gateways\AirwallexGatewayTrait::getActivePaymentMethodTypeItems Failed to get payment method types: {"code":"too_many_requests"}
| nullForum: Plugins
In reply to: [Airwallex Online Payments Gateway] Big performance issueHi there @ssatria ,
- We see many requests with cloudflare check in console log, that may be the reason. .
Almost all of them are a bit slower around 750ms to 1.200 sec
the slowest one is that after user passes faceid on apple pay and send payment request to airwallex api, it takes much longer than Stripe. - We are using express checkout. Guest purchases. Have seen many of the time that ajax requests have been blocked and have 403 response code. Maybe cloudflare or airwallex have a high security measurement to allow x visitors per second or etc ? Because when we buy high load of traffic and send to our product page, we have many 403 responses when we check the logs, thats why we get lower orders compared to Stripe. Here is the log example https://i.snipboard.io/iN4fqv.jpg
Is there anyway to disable rate limits ?
I have updated my airwallex plugin to latest.
Is this correct way to use ? It shows the normal price (2.99) instead of 0, It should be 0 usd price to be shown on apple pay modal because user will not pay the price at first. It’s free for first 3 days.
https://i.snipboard.io/01KZfW.jpgThanks a lot! This is great news and I appreciate your work. I’m going to start testing it.
@airwallex Hi there, any updates or expected timespan?
Free trial increases the conversation rate by 45%
It’s very important for us. I hope that it’s been added in near future, thank you.Thanks, I am assuming that this goes to functions.php of my theme folder, right ?
May I know should I use that one you suggested or this one is a better approach ?add_filter('script_loader_src', function ($src, $handle) {
if (is_admin()) return $src; // don't touch wp-admin
if (strpos($src, 'js.stripe.com') !== false) {
// Preserve other query params, only add if missing
if (strpos($src, 'advancedFraudSignals=') === false) {
$src = add_query_arg('advancedFraudSignals', 'false', $src);
}
}
return $src;
}, 100, 2);- This reply was modified 6 months, 3 weeks ago by cagsan.
Forum: Plugins
In reply to: [Revolut Gateway for WooCommerce] Payments from USA seem to not be workingIn USA its different, if you dont post ZIP and/or billing address, most of the banks will decline.
Looking forward to hear from you about the update @airwallex
Im looking forward, thanks
Hi there, any updates about the update ?
- We see many requests with cloudflare check in console log, that may be the reason. .