• SagePay can offer/manage Paypal payments too. At the moment, this has to be added with a filter like so:

    add_filter('woocommerce_sagepayserver_card_types', function ($cards) {
    
    $cards['PAYPAL'] = 'PayPal';
    
    return $cards;
    });

    Could it be added to the built-in card types, with a suitable image, please?

  • The topic ‘Add Paypal as permitted card type?’ is closed to new replies.