Payment Provider Specific Notes

Credit Card Acquirers

Not supported

Shift4

Verify card

Over refund

Nets/Teller

Credit

Over refund

AltaPay

Credit

Over refund

Elavon US

Credit

Over refund

Callback pages in use

  • Form
  • Redirect (3D Secure)
  • Verify order
  • OK
  • Fail
  • Notification (Chargebacks)

Invoice payments

Wallet solutions

Credit card wallet solutions

E-payment solutions

iDEAL

Gift Cards

Mobile solutions

It is possible to style the mobile payment form, to only show parts of it, or change the text, as shown below.

// To only show mobile app button by removing the phone number, input
form#Mobile {
   display:none !important;
}
// Or vice versa
form#MobileOnApp {
   display:none !important;
}
// If you wish to show both, but change the text between them, you could do so like this
.AltaPayMobileInputOptionOr {
   display:none;
}
#MobileOnApp::after {
   content: 'Alternatively';
}

We check whether the user is on a mobile device by default. If you manually hide form#Mobile, form#MobileOnApp will be forced to be shown even though the user is not using a mobile device.