Ja, som kunde hos Yourpay kan du tilbyde Mobilepay betalinger og modtage pengene på helt samme måde som Visa og MasterCard betalinger.
Aktiver Mobilepay i checkout:
- - Logge ind i Dashboardet
- - Gå til AppStore
- - Vælg "installer" ved Mobilepay
- Yourpay igangsætter oprettelsen af Mobilepay.
- Oprettelsen godkendes og du modtager besked om at betalingsmetoden nu er aktiveret i din shop.
Hvilken platforme understøttes?
- Prestashop
- WooCommerce
- Magento
- Customized
Mobile
Tablet og Desktop
Customized (Hosted payment window)
<?php $MerchantNumber = "12345678"; // Yourpay MerchantID $accepturl = "http://www.yourpay.io"; // The URL where we should return your customer to. Normally a "Thank you" page $callbackurl = "http://www.yourpay.io"; // The URL where we sent the IPN, normally a programically confirmation page $time = time(); $amount = 100; // Amount in lowest currency, 100 = 1 EUR $currencycode = 978; // CurrencyCode for your transaction. Click here to see a complete list of currency codes https://en.wikipedia.org/wiki/ISO_4217 $orderid = "testautocapture"; // Yourpay orderID $ccrg = "0"; // If set to one, then subscriptions is activated $language = "da-dk"; // Language of payment page – Full list to be found at https://msdn.microsoft.com/en-us/library/ee825488(v=cs.20).aspx $comments = ""; // Additional comments to the transaction $ct = "off"; // If CT is set, the transaction-fee will be forwarded to the consumer (and paid by the consumer) $autocapture = "no"; //If autocapture is set to yes the transaction will be captured automaticly. echo "<a href='https://payments.yourpay.se/betalingsvindue_summary.php?method=mobilepay&MerchantNumber=$MerchantNumber&ShopPlatform=ManualPayments&accepturl=$accepturl&callbackurl=$callbackurl&time=$time&use3d=0&amount=$amount&CurrencyCode=$currencycode&cartid=$orderid&lang=$language&ct=$ct&ccrg=$ccrg&comments=$comments&autocapture=$autocapture'>"; echo "Click here to open Yourpays Hosted Payment Window"; echo "</a>";
Kommentarer
0 kommentarer
Log ind for at kommentere.