Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: Kunde kann uninstalliert Zahlungsart wählen

    papalife

    • Mitglied
    • Beiträge: 174
    Kunde kann uninstalliert Zahlungsart wählen
    am: 09. Juli 2015, 23:33:25
    Hallo Team,

    Ich habe heute für erstmal gesehen dass, ein Kunde eine uninstalliert Zahlungsart gewählt hat. Ich habe Paypal Kaufabwicklung installiert und in einer Bestellung gibt es paypal express und in Tabelle "orders" gibts auch paypal express als payment method. Wissen Sie etwas ?

    lg,
    Apo

    Linkback: https://www.modified-shop.org/forum/index.php?topic=33319.0
    Templateshop - Eine große Auswahl an neuen und modernen Templates für die modified eCommerce Shopsoftware

    Tomcraft

    • modified Team
    • Gravatar
    • Beiträge: 46.195
    • Geschlecht:
    Re: Kunde kann uninstalliert Zahlungsart wählen
    Antwort #1 am: 10. Juli 2015, 12:24:55
    Suche in Datei "/includes/cart_actions.php":

    Code: PHP  [Auswählen]
        // BOF - Tomcraft - 2011-02-01 - Paypal Express Modul
        case 'paypal_express_checkout':
          $o_paypal->paypal_express_auth_call();
          xtc_redirect($o_paypal->payPalURL);
          break;
        // EOF - Tomcraft - 2011-02-01 - Paypal Express Modul

    und ersetze mit:

    Code: PHP  [Auswählen]
        // BOF - Tomcraft - 2011-02-01 - Paypal Express Modul
        case 'paypal_express_checkout':
          if (defined('MODULE_PAYMENT_PAYPALEXPRESS_STATUS')
              && MODULE_PAYMENT_PAYPALEXPRESS_STATUS == 'True')
          {
            $o_paypal->paypal_express_auth_call();
            xtc_redirect($o_paypal->payPalURL);
          }
          break;
        // EOF - Tomcraft - 2011-02-01 - Paypal Express Modul

    Grüße

    Torsten