newshop
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with Woocommerce MultilingualAh ok I see. I posted the fix in the WPML forum in case someone has the same problem but your solution in fixing this by default would be the best! Thanks again!
Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with Woocommerce MultilingualPerfect, thank you sooooooo much!!! Great support and great plugin!
Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with Woocommerce MultilingualThank you, did you receive my mail from Tuesday?
Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with Woocommerce MultilingualThank you, but it was already set to load after Woocommerce (they are sorted in alphabetic order). So I tried the “Reset to default order”, but the ordering stayed the same and then I tried to load Multilingual before Woocommerce, but that also did not fix it.
Any other ideas?Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with Woocommerce MultilingualI could send you the credentials to my testpage if that helps…
Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with Woocommerce MultilingualJust found this thread, but unfortunately there is no solution yet…:
https://wpml.org/forums/topic/fatal-error-on-woocommerce-multilingual/I made no changes about the plugin order or something like this, just a simple selective plugin loading and Woocommerce Multilinugal is set to “active” on all pages.
I really hope that this can be fixed because I definitely need Woocommerce Multilinugal and I would love to keep using your plugin too.- This reply was modified 6 years, 8 months ago by newshop.
Yes it would be a huge help to learn which ones override which ones.
I am using WPML and my problem is that I want the english and the german page to have the same filter settings.
When I had only one language, I set the filters manually on the respective edit page screen (selective plugin loading). But now having two (or more) languages, that makes no sense.
So it would be the best solution to create a preset e.g. called “General Terms & Conditions Page” and then define which filters are enabled and disabled on this preset. Then I could go ahead to the english and the german pages (edit pages) and select this preset. So I would make sure that I have to do my changes only in the preset and not on each edit page. Do you know what I mean?Is there a simple solution for this? I made several tests but always had the problems with overriding and could not find any help about how to set this up properly.
Any help would be really appreciated.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Einlogg-Seite vor Checkout verschwundenNochmals vielen Dank für den wirklich tollen Support!!
Forum: Plugins
In reply to: [Germanized for WooCommerce] Einlogg-Seite vor Checkout verschwundenHm komisch, habs dir gerade erneut geschickt. Hast du es jetzt bekommen?
Forum: Plugins
In reply to: [Germanized for WooCommerce] Einlogg-Seite vor Checkout verschwundenSuper, vielen Dank! Hab dir gerade eine Mail geschrieben 🙂
Forum: Plugins
In reply to: [Germanized for WooCommerce] Einlogg-Seite vor Checkout verschwundenAlso ich hab alle Plugins außer Woocommerce und Germanized deaktiviert.
Der Login generell funktioniert.
Unter Erweitert > „Mein Konto“ ist die Seite “Kundenkonto” angegeben, was auch die korrekte Seite ist. Ich bin echt total überfragt, was hier los ist, zumal es ja auch mit Storefront nicht funktioniert. Soll ich dir vielleicht mal meine Zugangsdaten zur Testseite per Mail senden?
Viele Grüße!Forum: Plugins
In reply to: [Germanized for WooCommerce] Einlogg-Seite vor Checkout verschwundenHallo,
also die Optionen “Double Opt-In Verfahren für Kundenkonten aktivieren?” und “Deaktiviere den Login und Checkout für inaktive Kunden.” sind beide aktiviert und ich bin NICHT eingeloggt – hab auch nochmal alle Cookies gelöscht und in Firefox den Inkognito-Browser genommen. Hab das Theme auch schon auf Storefront umgestellt und alle anderen Plugins deaktiviert, aber es überspringt trotzdem immer die Einlogg-Seite.- This reply was modified 6 years, 9 months ago by newshop.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Version 2.0.0: Fatal error: Uncaught ErrorJa super, danke, das funktioniert beides.
Die zweite Version ist ja etwas schlanker, d.h. die wäre zu bevorzugen oder?Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Version 2.0.0: Fatal error: Uncaught ErrorDanke, gerade ausprobiert, aber leider kommt immernoch der FatalError..
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Version 2.0.0: Fatal error: Uncaught ErrorIch hab den Fehler gefunden, ich hatte folgenden Code in meiner functions.php stehen, weil ich die Bankdetails auf der Danke-Seite nicht anzeigen möchte:
add_action( 'init', 'remove_bacs_from_thank_you_page', 100 ); function remove_bacs_from_thank_you_page() { // Bail, if we don't have WC function if ( ! function_exists( 'WC' ) ) { return; } // Get all available gateways $available_gateways = WC()->payment_gateways()->get_available_payment_gateways(); // Get the Bacs gateway class $gateway = isset( $available_gateways['bacs'] ) ? $available_gateways['bacs'] : false; // We won't do anything if the gateway is not available if ( false == $gateway ) { return; } // Remove the action, which places the BACS details on the thank you page remove_action( 'woocommerce_thankyou_bacs', array( $gateway, 'thankyou_page' ) ); }Wie muss ich den Code modifizieren, damit er weiterhin mit eurem Plugin kompatibel ist? Bis vor Version 2.0.0 hatte er ja keine Probleme gemacht…