• Resolved wpforumuser

    (@wordpressforumhelp)


    Hey all

    Firstly, is there a simple fix for this? as for me, turning off all caching etc… does NOT work.

    Secondly, i have 25+ clients using this gateway screaming at me when i am on vacation and trying to relay the issue to my team.

    Thirdly, i have trustly orders ON HOLD for clients totalling £15k+ as clients do not have them setup in their PayPal account.

    Fourthly, forgive me if i am missing a patch/fix, but WTAF…!

    Fifthly, i am getting bored of Admin emails now telling me a payment gateway has been enabled…!

    And final rant…
    Try this temp MU Plugin done while holding my Long Island Iced Tea…!

    Outta here…

    <?php
    /*
    Plugin Name: Disable PayPal APMs
    Description: Hard blocks unwanted PayPal alternative payment methods.
    Author: Slick (T.O)
    */

    add_filter('woocommerce_available_payment_gateways', function ($gateways) {
    if (is_admin() && !defined('DOING_AJAX')) {
    return $gateways;
    }

    $blocked = [
    'ppcp-bancontact',
    'ppcp-blik',
    'ppcp-eps',
    'ppcp-ideal',
    'ppcp-mybank',
    'ppcp-p24',
    'ppcp-trustly',
    'ppcp-multibanco',
    ];

    foreach ($blocked as $gateway_id) {
    unset($gateways[$gateway_id]);
    }

    return $gateways;
    }, 999);
    • This topic was modified 1 month, 2 weeks ago by wpforumuser.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @wordpressforumhelp

    I’m quite aware that you may have already seen this, but just in case, sharing it again as it directly explains the recent behavior around payment methods being enabled: https://developer.woocommerce.com/2026/04/06/payment-gateways-have-always-been-enabled-a-debrief/

    This covers the APM-related changes. If needed, you can temporarily disable those methods using a snippet or MU plugin until things stabilize on your end. If you need just a snippet, let us know.

    Hey all
    Firstly, is there a simple fix for this? as for me, turning off all caching etc… does NOT work.

    So far, I haven’t seen a case where disabling caching did not fix the problem with APM. Please reach out to us directly with an example system report or share it here. We’d like to analyze it further.

    Thirdly, i have trustly orders ON HOLD for clients totalling £15k+ as clients do not have them setup in their PayPal account.

    Regarding Trustly, I don’t see a direct relation between the APM behavior and Trustly orders being stuck on hold. This is typically tied to the payment status on PayPal’s side (pending settlement, missing configuration, or account-level limitations). Did this start happening right after the update, or was it already occurring before?

    It’s hard to assess this without logs and a screenshot of the order notes. Please reach out to us directly.

    That detail will help narrow this down.

    Kind Regards,
    Krystian

    Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @wordpressforumhelp

    Since we have not received any further communication from you, we are assuming that your issue has been resolved. Therefore, we mark this thread as resolved.

    If you have any further questions or encounter a new issue, feel free to open a new thread or submit a ticket through our service desk. Please include the URL of this thread in your ticket for reference.

    Kind regards,
    Krystian

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.