Wir verwenden das plugin erfolgreich seit einiger Zeit. Leider funktioniert die QR Rechnung nicht mehr. Es wird lediglich 0 angezeigt. Wir hatten ein ?hnliches Problem zuvor, da hatte die Kunden ID nicht gestimmt. Jetzt stimmt alles… und es kommt wieder 0
Danke für einen kurzen Tip!
Hi There,
I would like to know how can I add house number to the generated invoice below the street name? I have added new section in cart/checkout which is only for house number
]]>Hi there!
I was happy to find your plugin and followed the installation instructions for the payment with QR-IBAN. Unfortunately, there were no attachments to the email (any kind created by WooCommerce). I tried several times.
Could you give me some hints for trouble shooting? We are using an Email template creator plugin, could that interfere with the QR-Bill in any way?
Do you maybe have more info/a screenshot for following instructions on functionality?
3. The PDF invoice document is automatically attached to the order confirmation email which is sent by WooCommerce to the user immediately upon order completion.
–> Which is the equivalent: on hold (I suppose this one), processing, payment pending, shipped (probably not)?
4. As a shop owner you can review and download the PDF invoice document anytime in the WooCommerce order screen
Could you provide a screenshot of that?
Thanks in advance and kind regards!
]]>Hello,
When someone buys any product using the Swiss QR Bill payment gateway and goes to the My Account>Order page they can see a button “View Invoice”. But when they click on it to see the invoice it redirects to the My Account page, not the invoice.
This is the button I am talking about – https://prnt.sc/AjWzykt9xoV1
Can you tell me the solution?
Thanks,
Hi,
on additionnal information, the order number has # character, but this is not ok with the bank system and provides an error.
Can we remove the # ?
also, I’ve notice that é, è …. are not well integrated in the product name for exemple and are replaced by ?? on the QR bill .
Can you check that too ?
thanks
]]>Aktuell wird ein gew?hrter Rabatt einer WooCommerce Bestellung nur im Gesamtbetrag auf der Rechnung berücksichtigt.
G?be es eine M?glichkeit eine zus?tzliche Zeile (Coupon(s):- CHF 1’024.70) in die PDF Rechnung zu übernehmen?
Wann darf mit einer aktualisierten Version des Plugins gerechnet werden, welches PHP 8.X kompatibel ist?
]]>Hallo zusammen
Zuerst, danke für das Plugin!! Super Job!
Zwei Anmerkungen:
1. W?re es m?glich in Zukunft das PDF bearbeiten zu k?nnen?
Dies würde sehr Hilfreich sein, da das Plugin die QR Rechnung auf die erste Seite druckt.
2. Es w?re gut, wenn der Zahlteil auf automatisch auf der letzten Seite gedruckt wird und wenn n?tig eine neue Leere Seite erstellt wird (nur mir QR Zahlteil)
3. Die Meta Daten werden bei den Positionen nicht mit aufgeführt. W?re toll, wenn diese auf der Rechnung ebenfalls ersichtlich sind.
Danke nochmals für eure Arbeit!
Liebe Grüsse
J.
Guten Tag
Super Plugin, hier ein kleiner Verbesserungsvorschlag: Ich hab mir gerade den Plugin Code angeschaut und festgestellt, dass die Template Parts für die PDF Generierung wohl nicht gem?ss WordPress Best Practices überschreibbar sind, da sie direkt vom Plugin-Pfad geladen werden:
include plugin_dir_path(WC_SWISS_QR_BILL_FILE) . ‘includes/tcpdf/templates/parts/shop-header.php’;
W?re es m?glich, die Template Parts mit locate_template zu laden, sodass bei Bedarf die Templates angepasst werden k?nnen? Würde sicher einigen sehr helfen!
Gruss
]]>Hi,
When the PDF is longer than 1 page, the QRcode section is shown in the first page and “cut” the description in the invoice example here : https://drive.google.com/file/d/1HuS_oALsrD6ilM_kJuSIj2lNX-ur99Vj/view?usp=sharing
]]>when an order is validated, there is no invoice attached to the email. Do I need to do anything special to get the file attached?
]]>Hi, is this plugin compatible with WooCommerce Subscriptions? Will a new QR bill be generated and sent whenever the subscription renews?
]]>Ebenfalls zusammen mit WC Global Cart wird auf ein Null-Wert zugegriffen:
PHP Notice: Trying to access array offset on value of type null in /----/wordpress/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php on line 285
Patch:
Index: includes/gateway/abstract-wc-gateway-swiss-qr-bill.php
===================================================================
— includes/gateway/abstract-wc-gateway-swiss-qr-bill.php (revision 2747982)
+++ includes/gateway/abstract-wc-gateway-swiss-qr-bill.php (working copy)
@@ -282,7 +282,7 @@
* @return bool
*/
public function is_valid_billing_country() {
– return WC()->session && in_array(strtoupper(WC()->session->get(‘customer’)[‘country’]), array(‘CH’, ‘LI’));
+ return WC()->session && WC()->session->get(‘customer’) && in_array(strtoupper(WC()->session->get(‘customer’)[‘country’]), array(‘CH’, ‘LI’));
}
/**`
`
]]>Hallo
Das Plugin WC Global Cart führt zu einem fatalen Fehler in Swiss QR Bill.
In abstract-wc-gateway-swiss-qr-bill.php auf Zeile 263 wird false anstelle eines Objektes zurückgegeben. Laut API-Doku von WooCommerce kann wc_get_product(..) false oder null zurückgeben.
Vorschlag / Wunsch. Prüfung auf false / null einfügen. Patch:
Index: includes/gateway/abstract-wc-gateway-swiss-qr-bill.php
===================================================================
--- includes/gateway/abstract-wc-gateway-swiss-qr-bill.php (revision 2747982)
+++ includes/gateway/abstract-wc-gateway-swiss-qr-bill.php (working copy)
@@ -262,6 +262,10 @@
foreach (WC()->cart->get_cart_contents() as $cart_content):
$cart_product = wc_get_product($cart_content['product_id']);
+ if (is_null($cart_product) or $cart_product == false) {
+ return true;
+ }
+
foreach ($cart_product->get_category_ids() as $category_id):
$is_gateway_enabled = get_term_meta($category_id, 'wsqb_activate_gateway', true) !== 'no';
// Return false as soon as we find disabled category
Error_log mit Stacktrace:
[25-Jun-2022 15:31:16 UTC] PHP Fatal error: Uncaught Error: Call to a member function get_category_ids() on bool in —-/wordpress/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php:265
Stack trace:
#0 —-/wordpress/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php(148): WC_Gateway_Swiss_Qr_Base->check_product_cats_restriction()
#1 —-/wordpress/wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php(154): WC_Gateway_Swiss_Qr_Base->is_available()
#2 —-/wordpress/wp-content/plugins/woocommerce-gateway-stripe/includes/payment-methods/class-wc-stripe-payment-request.php(799): WC_Payment_Gateways->get_available_payment_gateways()
#3 —-/wordpress/wp-includes/class-wp-hook.php(307): WC_Stripe_Payment_Request->display_payment_request_button_html(”)
#4 —-/wordpress/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters in —-/wordpress/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php on line 265
`
Danke ??
]]>Hallo
Wie auch schon einmal in diesem Forum gemeldet wurde, wir lediglich ein 0 Kb File mit der Bezeichnung wc-swiss-qr-bill anstatt einer PDF-Rechnung an den Besteller geschickt. Alle Plugins ausser WooCommerce und Swiss QR Bill habe ich bereits deaktiviert, was aber nicht gebracht hat. Wird das Plugin eigentlich noch aktiv gewartet und betreut? Auf Anfrage bei Hostbliss wurde mir gesagt, dass sie nicht mehr zust?ndig seien.
Grüsse – Oliver
Hallo ??
Bei uns wird die PDF-Rechnung der E-Mail doppelt angefügt.
Ich versuchte alle anderen Plugins zu deaktivieren und verschiedene Einstellungen. Ohne Erfolg.
Was k?nnte das sein? wie kann ich debuggen? Hat jemand einen Tipp?
Danke ??
Tom
Hi
Have the same error link (but in another line):
https://www.ads-software.com/support/topic/fatal-error-with-install/
– The installation and configuration worked
– CH-QR payment slips are generated
– However, when calling the WP dashboard, the error is displayed
– The plugin is currently disabled
Fatal error: Uncaught Error: Call to a member function get_cart_contents() on null in
<site>/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php:262 Stack trace:
#0 <site>/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php(148): WC_Gateway_Swiss_Qr_Base->check_product_cats_restriction()
#1 <site>/wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php(154): WC_Gateway_Swiss_Qr_Base->is_available()
#2 <site>/wp-content/plugins/woocommerce/packages/woocommerce-admin/src/Features/OnboardingTasks/Tasks/Payments.php(77): WC_Payment_Gateways->get_available_payment_gateways()
#3 <site>/wp-content/plugins/woocommerce/packages/woocommerce-admin/src/Features/OnboardingTasks/Tasks/Payments.php(58): Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks\Payments::has_gateways()
#4 /home/<site>/publi in <site>/wp-content/plugins/swiss-qr-bill/includes/gateway/abstract-wc-gateway-swiss-qr-bill.php on line 262
Danke für die Unterstützung
Thanks for the support
Ist es m?glich die Bestellnummer in die QR-Rechnung zu übernehmen? Die Zuteilung der Zahlungen w?re viel einfacher.
]]>Wenn die Firmenadresse des Kunden zu viele Zeichen hat (Z.B. Characters with spaces: 48), wird der Email keine PDF angeh?ngt und auch im Woo Admin Panel wird keine generiert.
]]>Problem with the character ? symbol of the mark which appears on the QR invoice by the signs ???. Three question marks.
This bug is very annoying because when a product is a brand, there is a bad image of the brand.
In the classic wordpress invoice there is no problem, it is only with this excellent plugin that we like very much.
Thanks for your work and your answer
JF
]]>Hallo
W?re es m?glich das auf dem PDF noch ein Individueller Text angezeigt werden kann. Z. B. das Kurse erst nach Zahlungseingang definitiv gebucht sind. Im Email besteht die M?glichkeit ja schon.
Hat jemand eine Ahnung, was ich als Kunde von Postfinance bei der Aktivierung des Plugins als Identifikationsnummer eingeben muss? Auch Postfinance hatte keine Ahnung.
]]>Hello I hope you are well.
I use your plugin on a site and it is perfect.
However I have a question, following a manual refund in Woocommerce, the invoice does not update. Is there something to configure?
Thanks in advance
Nice day
Guten Tag
Gibt es eine M?glichkeit im Plugin zu w?hlen, bei welchen WooCommerce-Emails die Rechnung als Anhang beigelegt werden sollte? Bspw. wird die Rechnung automatisch beim “In Bearbeitung”-E-Mail an den Kunden angeh?ngt. Wir würden aber gerne die Rechnung bei einem anderen WooCommerce E-Mail hinterlegen (bspw. “Abgeschlossen”) und beim “In Bearbeitung”-E-Mail entsprechend entfernen. Ist das machbar?
Vielen Dank im Voraus und freundliche Grüsse
Wenn das Modul noch zus?tzlich mit der Funktion Lieferschein erstellen erg?nzt wird, damit man da nicht noch ein zus?tzliches Plugin ben?tigt, ist es perfekt (Lieferadresse links oder rechst frei w?hlbar).
]]>Hallo HostBliss-Team
Wir haben heute euer perfekt zu unseren Bedürfnissen passendes Plugin installiert doch leider gibt es den folgenden Fehler: Die Rechnungen in den Bestellungen sowie ind den E-Mail-Anh?ngen haben keine Endung und sind 0 byte schwer. Ich habe gesehen dass es diesen Topic bereits gegeben hat aber die Antworten darin l?sen unser Problem nicht.
Folgend findet ihr die wichtigsten Infos zur Installation:
– WP ist aktuell
– WooCommerce ist aktuell
– Plugin ist aktuell
– Seite ist in der Entwicklung und daher im Maintenance-Modus
– Wir hatten vor eurem Plugin Testweise ein anderes PDF Invoice Plugin aktiviert, es aber vor der Installation deaktiviert und gel?scht.
– Daneben haben wir folgende aktiven Plugins: All in One WP Security, Antispam Bee, Code Snippets, Elementor Pro, Insert Headers and Footers, mame Twint for Woocommerce, Statify, UpdraftPlus, WooCommerce (natürlich :), WPS Hide Login
– Auf der Kassenseite wird der State / Kanton ausgeblendet (Das Land ist sichtbar)
Danke für den Support und Grüsse
]]>Hello !
Very nice plugin, thank you !
The logo I set in the plugin setting is not showing on the PDF invoice.
Is there any file requirement ? Size, format, etc. ?
Hallo Swiss QR Bill Team
Ich finde das Plugin sehr gut und es funktioniert wunschgem?ss!
Eine Kleinigkeit: In der QR-Rechnung werden die Umlaute ?,?,ü bei der Auflistung der bestellten Artikeln nicht richtig dargestellt, sie werden durch ?? ersetzt.
Bei der Shop-Bestellbest?tigung wird es richtig angezeigt, es betrifft nur das erzeugte pdf (Adressbereich oben und QR-Teil unten sind nicht betroffen und zeigen die Umlaute richtig an).
Als zus?tzliche Information; ich habe die Sprache ‘Deutsch (Sie)’ eingestellt und verwende das Plugin ‘Language Fallback’ mit Fallback auf die Sprache ‘Deutsch’.
Weitere Info, ich habe mit dem Autoptimize-Plugin die Google-Fonts entfernt.
Ich danke Ihnen für Ihre Bemühungen
]]>Ich würde das Feld “Zus?tzlichen Informationen” auf der QR-Rechnung gerne etwas einfache gestalten damit die Benutzer die nicht scannen nicht so viel abtippen müssen.
Beispielsweise reicht die eindeutige Rechnungsnummer aus. Das Bestelldatum ben?tigen wir nicht zus?tzlich auf der Rechnung. Das Datum ist eh nicht eindeutig und hilft auch nicht wirklich bei der Recherche einer Bestellung. Zudem steht das Datum auch in der Bestellbest?tigung.
Beispiel:
Zus?tzliche Informationen
Rechnung #8587, 1. November 2021
ersetzen mit:
Zus?tzliche Informationen
Rechnung 8587
Is it possible to add the data field “customer note” to the invoice pdf? It is possible with other plugins and would be very useful to have here as well.
Thanks in advance!
]]>