alexbrasovan
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] wpcf7_validate_text* hook doesn’t work?I have a similar issue. Prior to update 5.6 I was using this line of code to stop validation on radio buttons:
remove_filter('wpcf7_validate_radio', 'wpcf7_checkbox_validation_filter');
But after the update, radio buttons are being validated again. Any ideas what could be causing this?
Forum: Plugins
In reply to: [W3 Total Cache] “Purge All Caches” not working properly on Multisite installI am of course running the latest versions of WordPress and W3 Total Cache
Hi,
I’ve already contacted you regarding that issue last month before Christmas. Still haven’t received any reply. That’s why I’m posting here.
This seems to have solved it. Thanks!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] How to send CF7 field as Mailchimp tagOk, I’ve figured out how to send the value as a tag:
add_filter( 'mc4wp_integration_contact-form-7_subscriber_data', function(MC4WP_MailChimp_Subscriber $subscriber, $cf7_form_id) { if ($cf7_form_id == '1052') { $event_name = $subscriber->merge_fields['EVENT']; $subscriber->tags[] = $event_name; } return $subscriber; }, 10, 2);
This functionality only seems to work the first time a new contact is added to a Mailchimp list. If I register with the same email but set a different tag, it all stays the same. Any way to append new tags each time someone registers with the same email?
Forum: Fixing WordPress
In reply to: LDAP restrict access to postsI’m looking for something that works independently from WordPress backend. Our employees shouldn’t be registered as users on that site. It’s just about ‘unlocking’ pages with a LDAP login.