Bestellübersicht: Wie den Kommentar von PP verhindern?

Hallo, ich hab versucht den automatisch generierten Kommentar von Paypal und SOFORT nicht im Kommentarfeld anzeigen zu lassen. Hintergrund ist, dass ich so schneller in der Übersicht sehe, ob ein Kunde einen richtigen Kommentar hinterlassen hat. Irgendwie hat das aber nicht funktioniert, daher wollte ich mal um Rat fragen ob jemand weiss was ich falsch gemacht hab? Hab folgendes gemacht: PAYPAL: In die Datei /engine/Shopware/Plugins/Default/Frontend/SwagPaymentPaypal/Controllers/Frontend/PaymentPaypal.php $sql = ' UPDATE `s_order` SET transactionID = ?, comment = ?, customercomment = CONCAT(customercomment, ?) WHERE temporaryID = ? AND transactionID = ? '; Hier den Mittelteil gekürzt, damit kein Kommentar erzeugt wird: $sql = ' UPDATE `s_order` SET transactionID = ? WHERE temporaryID = ? AND transactionID = ? '; Ist das so richtig? SOFORT: /engine/Shopware/Plugins/Default/Frontend/PaymentSofort/Controllers/Frontend/SofortNotification.php case 'not\_credited\_yet': $successfulOrder = $this-\>Snippets-\>getSnippet('sofort\_multipay\_finish')-\>get('sofort\_multipay\_su\_not\_credited\_yet'); $successfulOrder = str\_replace('{{transaction}}', $this-\>transactionId, $successfulOrder); $successfulOrder = str\_replace('{{tId}}', '', $successfulOrder); // Merchant and customer have to be informed $this-\>ShopwareUpdateHelper-\>setCustomerComment($this-\>transactionId, $successfulOrder); $this-\>ShopwareUpdateHelper-\>setMerchantComment($this-\>transactionId, $successfulOrder); break; case 'not\_credited': Den Teil mit “sofort_mulitpay_su_not_credited_yet” ausgeklammert case 'not\_credited\_yet': $successfulOrder = str\_replace('{{transaction}}', $this-\>transactionId, $successfulOrder); $successfulOrder = str\_replace('{{tId}}', '', $successfulOrder); // Merchant and customer have to be informed $this-\>ShopwareUpdateHelper-\>setCustomerComment($this-\>transactionId, $successfulOrder); $this-\>ShopwareUpdateHelper-\>setMerchantComment($this-\>transactionId, $successfulOrder); break; case 'not\_credited': Wäre um einen Tip oder Hinweis dankbar. :slight_smile:

Schließe mich an, wobei ich nicht im System rumfrickeln möchte, sondern mich frage, wofür es diesen Kommentar überhaupt gibt?! Ich finde das aus dem von backtraum aufgeführten Grund nur störend.