• Resolved mathijsvdbeek

    (@mathijsvdbeek)


    Hello,
    I always used the old PayPal (standard) from Woocommerce itself, but it seems outdated. I used a snippet to only show the PayPal option for orders under 35 euro. What Hook do I need for this plugin to make this work?

Viewing 1 replies (of 1 total)
  • Thread Starter mathijsvdbeek

    (@mathijsvdbeek)

    Found it. For someone who wants the same just use:

    add_filter(‘woocommerce_available_payment_gateways’, function($gateways){
    $maximum = 35;
    if (is_checkout() && WC()->cart && WC()->cart->get_total() > $maximum) {
    unset($gateways[‘ppcp’]);
    }
    return $gateways;
    });

Viewing 1 replies (of 1 total)
  • The topic ‘PayPal only available under 35’ is closed to new replies.