s7ors
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Your WP REST API seems blocked our QUIC.cloud server calls.marked as resolved
Forum: Plugins
In reply to: [LiteSpeed Cache] Your WP REST API seems blocked our QUIC.cloud server calls.Thank you, the IP addresses were OK, but the code snippet fixed the problem: I could reconnect QUIC and everything seems fine again.
Thanks for your quick reply.
Forum: Plugins
In reply to: [LiteSpeed Cache] Your WP REST API seems blocked our QUIC.cloud server calls.The issue seems to be very similar to the one described here https://ww.wp.xz.cn/support/topic/cant-connect-to-quic-cloud-wp-rest-api-blocked-our-quic-cloud-server-calls/
I’ve also added a debug log of the call to the (not working) report function: https://pastebin.com/4ZPpXDJdForum: Plugins
In reply to: [Flexible Subscriptions] No payment methods filtered on checkoutI think I misunderstand the functionality provided by the plugin… I was under the impression that the payment gateway would handle the recurring payments, and therefore some payment methods would not be available for subscriptions.
But it makes me wonder.. how is the recurring payment handled? What happens when the first term expires? Maybe I’m overlooking something, but I can’t find any explanation..Can you explain this a little?
Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] No e-mails sent after installing WPML part 2Thank you, In the meantime as a workaround I modified Checkout.php to use the default WC “new order” notifications and these seem to work fine:
// Sends appropriate pre-order emails. // WC()->mailer()->get_emails()['WC_New_Customer_Pre_Order_Email']->trigger( $order_id ); // WC()->mailer()->get_emails()['WC_New_Pre_Order_Email']->trigger( $order_id ); // // workaround for custom templates not firing with WPML - rickk WC()->mailer()->get_emails()['WC_Email_Customer_Processing_Order']->trigger( $order_id ); WC()->mailer()->get_emails()['WC_Email_New_Order']->trigger( $order_id );Looking at the email template code I’m a puzzled why your custom notifications don’t work with WPML, it appears to be pretty standard stuff… hoping you guys have a clue.
Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] No e-mails sent after installing WPML part 2Well it’s pretty clear already that it’s a conflict with WPML: If I disable WPML the e-mail notifications get sent.
I’ve added some debugging to the code and it’s clear we’re reaching this point in Checkout.php fine:
// Sends appropriate pre-order emails.
WC()->mailer()->get_emails()['WC_New_Customer_Pre_Order_Email']->trigger( $order_id );
WC()->mailer()->get_emails()['WC_New_Pre_Order_Email']->trigger( $order_id );I haven’t dug further yet but I guess WPML somehow breaks something in these templates.
Note that the default e-mails are sent fine.
Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] No e-mails sent after installing WPMLUnfortunately the problem is not solved. I can send the e-mails from the admin portal now, but they’re still not send out when customers checkout and the order is set to the “Pre Order” status.
Can you help me troubleshoot this issue?
Forum: Plugins
In reply to: [Pre-Orders for WooCommerce] No e-mails sent after installing WPMLApparently a string translation caused this. I’ve deleted pretty much every WPML string translation and the e-mails started working again. If I ever find which one it was I’ll update this thread.