fabian383
Forum Replies Created
-
Forum: Plugins
In reply to: [Jeg Elementor Kit] HTML Code on my website stopped workingThe HTML was added with Elementor by adding a custom html section.
Then adding our html code there.
The HTML itself shows a growth graph for our clients and should no have anything to do with Jeg Elemenor Kit.
After updating all our plugins the custom html stopped working and the graph isn’t showing anymore. No errors in the inspector window though. We tried clearing cache many times.
We disabled every plugin one by one to find which one causes the issue.
After we found the conflict with Jeg Elementor Kit we tried for one full day to change the html code. We added things like a noConflict functions, but it was impossible to get it working again.
We aso tried to disable all Elements in the Jeg Elemenor Kit, but the issue remained.
Our html works again if we disable the Jeg Kit plugin and it works on two other wordpress websites that do not have Jeg Kit installed.
The only solution we found is using the Plugin “WP Rollback” and downgrading Jeg Elementor Kit to an older version. We randomly picked Version 2.6.4 and now the HTML works again like it always has.- This reply was modified 5 months ago by fabian383.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Fehler bei EmailsIn Woocommerce wird der Status der Produkte, die als virtuell UND herunterladbar deklariert sind, automatisch nach dem Kauf auf abgeschlossen gesetzt.
Somit erh?lt der Kunde in der Sekunde der Zahlung eine E-Mail mit “Vielen Dank! Hier ist dein gekauftes Produkt: Download”
Es ist absolut überflüssig hier ein zweites E-Mail auch schon vor der Zahlung zu senden.
Ich habe heute heute mit meinem Anwalt telefoniert, dieser war selber Meinung und meinte, er h?tte noch nie gesehen, dass im Zuge eines Zahlungsprozesses ein E-Mail vor und ein E-Mail nach der Zahlung verschickt wird.Meiner Meinung nach sorgt es nur für Verwirrung des Kunden.
- This reply was modified 4 years, 8 months ago by fabian383.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Fehler bei EmailsIch habe diesen Code gefunden, dieser hat mein Problem gel?st.
Es werden nun keine Bestellbest?tigungen gesendet, wenn Produkte virtuell UND herunterladbar sind.
Der Kunde bekommt direkt nach dem Kauf die Kaufbest?tigung und der Status wechselt auf abgeschlossen. Im Email befindet sich das gekaufte Dokument. So wie es sein soll.<?php add_filter( 'woocommerce_gzd_instant_order_confirmation', 'my_child_disable_instant_order_confirmation', 1, 10 ); function my_child_disable_instant_order_confirmation( $disable ) { return false; } ?>
- This reply was modified 4 years, 8 months ago by fabian383.