ZLC
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Groups in Contact Form 7Thank you, Jon and Tracy.
I’m trying to make the “add to Mailchimp Group” feature work for multiple, unique contact forms.
So contact form #1 adds people to Group A.
Contact form #2 adds people to Group B.
Etc.Jon, with your function above, I’m not sure what variables I need to change in it and to make the contact form add someone to a specific group.
I see the variable 111111 for the Contact Form 7 ID, but what do I need to change to add it to a certain group?
That’s the part I need help with.
Thank you so much.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Latest update is causing troubleSorry, Tracy. The technical support guy at Bluehost was the one who caught your plugin when he checked the error log. I wish I could be of more assistance to you.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Vertical center alignment in receiptI found the answer by searching your forum.
Here’s the solution in case someone else is looking for it:
tr.order_item > td.td:first-child { display: flex; align-items: center; } tr.order_item > td.td:first-child img { padding-right: 10px; padding-bottom: 0; }
Thank you for the code above!
I was wondering what I would need to add to the code to omit the admin (me) and other non-logged in users.
So I would only want to track the logged-in users on my site and the pages they visit except for me.
Thanks again.
I’m loving your plugin!
- This reply was modified 4 years ago by ZLC.
Forum: Plugins
In reply to: [Recent Posts Widget With Thumbnails] Remove latest post with random optionI appreciate your help, Martin, but writing a plugin is very much out of my league.
I’ll stick to displaying the posts in the standard order.
Thanks for your time.
Forum: Fixing WordPress
In reply to: Unable to reply to comments on frontendI found the solution here for anyone else searching: https://www.ads-software.com/support/topic/cloudflares-rocket-loader-and-comments-reply-issue/
Using this code from (@alexmarinos)
function mixtheme_add_data_attribute( $tag, $handle, $src ) { if ( 'comment-reply' !== $handle ) return $tag; return str_replace( ' src', ' data-cfasync="false" src', $tag ); } add_filter( 'script_loader_tag', 'mixtheme_add_data_attribute', 10, 3 );
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Unable to reply to comments on frontendI found the solution here for anyone else searching: https://www.ads-software.com/support/topic/cloudflares-rocket-loader-and-comments-reply-issue/
Using this code from (@alexmarinos)
function mixtheme_add_data_attribute( $tag, $handle, $src ) { if ( 'comment-reply' !== $handle ) return $tag; return str_replace( ' src', ' data-cfasync="false" src', $tag ); } add_filter( 'script_loader_tag', 'mixtheme_add_data_attribute', 10, 3 );
- This reply was modified 4 years, 3 months ago by ZLC.
Forum: Fixing WordPress
In reply to: Cloudflare’s Rocket Loader and comments reply issueTHANK YOU @alexmarinos! You just saved the day for me! Many, many thanks!
Forum: Fixing WordPress
In reply to: Unable to reply to comments on frontendHi @voboghure
I installed a new theme and the same issue persisted. Whenever I went to click “reply” nothing happened.
I appreciate your help.
Hi Nabil,
So I’ve updated the plugin and I can see that there is an option to reboot the timers.
I did that, but my latest issue is that the timers are no longer visible. So I can’t tell if anything I did worked.
I wonder if you have any ideas about what might be happening.
I would like help with this issue, please, Nabil. I use a free caching plugin called Hummingbird.
It’s asking for the Cookie IDs I don’t want cached—one per line.
Can you tell me how I would find the cookie IDs for my timers?
Thank you so much!
Thank you so much, Ben!
Hi Freddie. I’m just checking to see how your solution is coming along. I’m looking forward to implementing it!
Thanks so much!
Thanks, Freddie. I appreciate your help!
Yes, you’ve got it now. That’s exactly it. I want a specific contact form to add someone to a specific Mailchimp group upon submission.
The code I shared when I started this thread is what Kevin shared with me to add someone to a specific Mailchimp list (rather than a group within that list). So I hope there are some clues in there about how to do this.
Thanks again for your help, Freddie.