christianslater
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Homepage not workingIt’s very frustrating not getting any support. It’s been weeks, and the issue still exists!
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Homepage not working?!
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Homepage not workingHi, thanks for your reply. I deactivated all plugins except for translatepress. same issue!
sure. E-Mail is sent
Hi, thanks for your response. Strange is that I tried it with borlabs cookie deactivated and google ads gave me the response that the conversion was not tracked anyway.
Forum: Plugins
In reply to: [WP Customer Area] Custom PageThanks for the reply. Will this page also be added to the customer area navigation? Or how can I add this to the menu?
Forum: Plugins
In reply to: [WP Customer Area] Custom PageAny infos on that?
Forum: Plugins
In reply to: [PayPal Zettle POS for WooCommerce] Lagerbest?nde werden nicht synchronisiertHallo Niklas,
danke für die schnelle Antwort. Der Text ist grün. Ich habe die API Verbindung neu aufgebaut und den Katalog neu überspielt. In WooCommerce habe ich h?ndisch den Lagerbestand des Produktes angepasst aber auch das ist nicht übermittelt worden. Ich habe auf eurer Seite ein Ticket erstellt. Wie komme ich denn an die logfiles?Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Tracking number workflow?I’ve checked this. The country fields are always set and are mandatory for the client. So this could not be the problem.
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Tracking number workflow?thank you very much it works.
I have another issue with international package. I get the error: SOAP-ERROR: Encoding: object has no ‘countryCodeOrigin‘ property
Can you aaist with that?
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Tracking number workflow?Thanks for your reply. I see several option but i am not quite sure how the settings will behave. As this is a live shop I am afraid to test. So sorry for asking
Here is the first setting:
https://share.icloud.com/photos/0qJp1cHdGbMxW9239shPIgiHgWhat happens when I activate this option? Does this trigger an extra Email or does this insert the tracking code in order completed mail?
https://share.icloud.com/photos/02wHrAW2HeX6Y_1k_rSSU-zXg
This option is also unclear for me it asks to add the tracking text in order created mail? Or what mail is meant?
https://share.icloud.com/photos/0O-BEr_MEOJaTrkBYXw8UeJVQ
I guess this will set the order to completed after creating the label?
anyone with the same problem?
Forum: Plugins
In reply to: [WooCommerce] custom payment info text in email based on product?One additional note. I think I managed to get it working that only processing emails will have this text
// Description: Add different Email payment instructions based on order add_action( 'woocommerce_email_before_order_table', 'add_order_email_instructions', 10, 2 ); function add_order_email_instructions( $order, $sent_to_admin ) { if ( ! $sent_to_admin && $order->has_status( 'processing' )) { foreach($order->get_items() as $item) { $_product = get_product($item['product_id']); if ($item['product_id']==157) { echo '<p>vielen Dank für Ihre Bestellung. Sie bekommen in den n?chsten Tagen den Gutschein per Post zugestellt. Bitte überweisen Sie den Rechnnungsbetrag innerhalb der n?chsten 7 Tage. Erst bei Geldeingang erlangt der Gutschein seine Gültigkeit. Die Rechnung geht IIhnen in einer separaten Email zu.</p>'; } else echo '<p>vielen Dank für Ihre Kursbuchung. Gerne reservieren wir Ihnen die Pl?tze für den unten genannten Kurs. Im Kurspreis sind hochwertige Lebensmittel, eine Leihschürze, gereichte Getr?nke sowie eine Rezeptmappe enthalten. Sie brauchen also nichts mehr mitbringen und k?nnen sich entspannt auf einen sch?nen Sp?tnachmittag / Abend freuen. Sie bekommen in einer separaten Email eine Rechnung, die sp?testens 14 Tage vor dem Kurstermin als Buchungsbest?tigung zu zahlen ist.</p>'; } } }
So I just need to avoid multiple copies of textblock if there are more than one products purchased.
Forum: Plugins
In reply to: [WooCommerce] custom payment info text in email based on product?I recognized another problem.
If I order two products form another category that with id 157. the text appears twice.
Oh man, I thought I was so close ??
Forum: Plugins
In reply to: [WooCommerce] custom payment info text in email based on product?sorry Code:
// Description: Add different Email payment instructions based on order add_action( 'woocommerce_email_before_order_table', 'add_order_email_instructions', 10, 2 ); function add_order_email_instructions( $order, $sent_to_admin ) { if ( $order->has_status( 'processing' ) ) { foreach($order->get_items() as $item) { $_product = get_product($item['product_id']); if ($item['product_id']==157) { echo '<p>Text A</p>'; } else echo '<p>Text B</p>'; } } }