barentz
Forum Replies Created
-
@kjvextras, i added them to WP-files as pdf:
https://bb-woo-demo.tempurl.host/wp-content/uploads/2025/08/debug-log-mailchimp-woo.pdfWe use Oxygen Builder on our site, but to rule out errors, I switched to the WP theme Twenty Twenty-Five for testing and deactivated all plugins except for “WooCommerce,” “Mailchimp for WooCommerce,” and “Germanized for WooCommerce.” The error also occurred in this configuration.
Hi @kjvextras, thanks for reply and asking. To wich address should I sent logs & list?
Hello KJ, thank you very much for your help. I went through your explanations and links and was able to clarify a few things.
- Re 1: You use a block editor field for the “checked/unchecked” setting in the Mailchimp checkout. Since we don’t use the block editor, we don’t have this setting option. We have now solved this using a PHP snippet.
function mailchimp_filter_for_checkout_field ($checkbox_html, $status, $label) {
$new_label = “Ich möchte den Newsletter abonnieren”;
// Checkbox NICHT vorausgewählt (checked entfernen)
$checkbox_html = str_replace(‘checked=”checked”‘, ”, $checkbox_html);
// Label ersetzen
$checkbox_html = str_ireplace($label, $new_label, $checkbox_html);
return $checkbox_html;
}
add_filter(‘mailchimp_woocommerce_newsletter_field’, ‘mailchimp_filter_for_checkout_field’, 10, 3);
- Re 2 & 5: The label for the GDPR settings is not a WP string and therefore cannot be translated there, but comes directly from Mailchimp. It is stored there in German, but is displayed in English in the WooCommerce checkout. The field created in Mailchimp with the legal text is completely missing. This can be seen in the screenshot of the Mailchimp backend and WooCommerce frontend in the checkout:


- Regarding 3., we have also solved the optional deactivation of the newsletter subscription via a PHP snippet by passing an empty string:
add_filter(‘mailchimp_woocommerce_newsletter_field’, ‘__return_empty_string’); - Re 4: After another plugin synchronization, the DOI email is sent, but not immediately after checkout, only after the order status in WooCommerce has been changed from “pending” to ‘completed’ or “shipped.” Is this intentional? This means that, in case of doubt, the user will only receive the double opt-in email hours or days after placing the order…
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Checbox not displaying in checkoutHi Avinash,
when I open your checkout-page as a non logged-in-user, the NL-Opt-In checkbox is shown. Maybe you are seeing the page as a logged in user and there is no checkbox?
That’s a known behaviour described here:
https://wordpress.org/support/topic/mailchimp-subscribe-checkbox-not-appearing-in-wc-checkout-for-logged-in-users/5. The legal text from the Mailchimp GDPR settings is not displayed (it should be displayed under checkboxes in the marketing settings).
Forum: Plugins
In reply to: [CleverReach® WP] Fatal Error after installing cleaverreach-PluginThanks for helping, i will try out!
Forum: Plugins
In reply to: [CleverReach® WP] Fatal Error after installing cleaverreach-PluginHello,
I wrote to WPMUDEV support and they told me that getmypid is basically disabled and cannot be enabled. The support wrote:“You can reach back out to the cleverreach-plugin support/developers to let them know this, and see if there are other alternatives for your use case.”
Is there any alternative?
Otherwise, i see only two options: change my website-provider or change my newsletter-toolIch habe das selbe Problem seit dem letzten Update, Seite läuft auf UTC+2, alle Events haben den Eintrag UTC+2, aber angezeigt werden alle Events mit UTC, also 2 Stunden früher. Musste das Plugin komplett deaktivieren.
Samee Issue since the last Update, site runs on UTC+2, all events are set to UTC+2 but all events are shown with UTC, 2 hours earlier. I had to deactivate the Plugin.
Thank you @tommcgee for the 3.2.-version-Link!
That works fine for the moment and gives me the time to replace the plugin in all our sites if there is no bugfix in the next days.Forum: Plugins
In reply to: [Contact Form 7] Contact form bug since updating?As a workaround add the following css in Theme Options / Advanced / Custom CSS
div.wpcf7-display-none {display: none;}
Don’t use .wpcf7-display-none {display: none!important;}, otherwise the validation error isn’t displayed anymore!
- This reply was modified 8 years, 2 months ago by barentz.
- Re 1: You use a block editor field for the “checked/unchecked” setting in the Mailchimp checkout. Since we don’t use the block editor, we don’t have this setting option. We have now solved this using a PHP snippet.