Val H.
Forum Replies Created
-
Hello @mnelson4. I was talking about YARPP version 5.4 and below (included). I’m currently on WP 5.6.
Hi there. @50sense @jeffparker @mnelson4
The issue is still there and I downloaded a rollback plugin to check which update broke the save changes function. I can save changes below version 5.4.0 (included). Once I updated to 5.5.0 and above the button stopped working again. I hope this helps! WP ver. 5.6
Hello @mnelson4 , thank you for the fast reply and sorry for the late one on my side. I did enable Preserve Log and checked my console (multiple times after refresh and such) but nothing appears after I click “Save Changes”.
What I’m trying to change:
Match threshold: From 3 to 2
Automatic Display Options: From List to Custom(Multilingual) .It did work before, I’m 100% sure of that. I’ve used Multilingual after your update fixed my issue with the “Copy Templates” not copying. Suddenly I’m back to List view and the match threshold is 3.
The only new thing that I did was update WP to 5.5 (I think it was automatic actually)
If there is something else I can do let me know. I can give you private access to my website if needed. ??
Kind regards,
- This reply was modified 4 years, 7 months ago by Val H..
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Add 2 tags on a single formHey,
Thank you for the reply. Just to make sure, this is one of my else ifs :
} else if ($cf7_form_id == 249 || $cf7_form_id == 5568 ) { $subscriber->tags[] = 'EN';
Adding another tag :
} else if ($cf7_form_id == 249 || $cf7_form_id == 5568 ) { $subscriber->tags[] = 'EN'; $subscriber->tags[] = 'Purchased';
Is that correct?
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Add 2 tags on a single formOne more question (So I don’t open up a new thread)
I use CF7 for my forms. Is there a way to check if an user is already subscribed and return a different message? I use the checkbox to integrate mc4wp with cf7.
Thanks!
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] “Copy templates” Does nothingYou too! Again, thanks for your help!
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] “Copy templates” Does nothingAwesome! Thank you so much! @jeffparker
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] “Copy templates” Does nothingAwesome! Thanks @mnelson4 ??
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] “Copy templates” Does nothingI opened dev tools and clicked “Copy Templates” but no JS errors appeared in the console. If that’s not how I should be checking I don’t mind you walking me through it. I use Chrome.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] “Copy templates” Does nothingForum: Plugins
In reply to: [W3 Total Cache] w3tc-config after removing pluginHey @vmarko ,
So it’s just there in case I install the plugin again? So it can use the last saved settings?@webtoffee Thanks! ??
@milonet , @throu What I did was :
1. Installed WP Rollback plugin
2. Created a backup of my site (just in case) You should do the same if you’re going to do this
3. Rollbacked the plugin to 1.8.8
4. Cleared cached plugins (in your case it will be the W3 plugin)And now everything works.
- This reply was modified 4 years, 8 months ago by Val H..
Rollbacked to 1.8.8 . Waiting for a fix. Thanks! ??
Forum: Plugins
In reply to: [Boxzilla] Is it possible to insert hidden tags in Boxzilla for Mailchimp?add_filter( 'mc4wp_integration_contact-form-7_subscriber_data', function(MC4WP_MailChimp_Subscriber $subscriber, $cf7_form_id) { if ($cf7_form_id == 11914 || $cf7_form_id == 11909) { $subscriber->tags[] = 'EN'; } return $subscriber; , 10, 2);
I used this code for my cf7 tagging. How should I change it for the mc4wp form? Form ID is 7696 and the tag needed is EN.